t_PDABarCodeSign.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using System;
  2. using System.ComponentModel.DataAnnotations;
  3. using System.Security.Permissions;
  4. namespace Repository
  5. {
  6. public class t_PDABarCodeSign
  7. {
  8. [Key]
  9. public int FID { get; set; }
  10. public int FIndex { get; set; }
  11. public int FInterID { get; set; }
  12. public int FEntryID { get; set; }
  13. public string FBillNo { get; set; }
  14. public int? FInterIDIn { get; set; }
  15. public int? FInterIDOut { get; set; }
  16. public int? FInterIDAssemble { get; set; }
  17. public int? FInterIDDisassemble { get; set; }
  18. public int FItemID { get; set; }
  19. public int? FUnitID { get; set; }
  20. public string FBarCode { get; set; }
  21. public DateTime? FDatePrint { get; set; }
  22. public DateTime? FDateInStore { get; set; }
  23. public DateTime? FDateOutStore { get; set; }
  24. public string FIsInStore { get; set; }
  25. public string FIsOutStore { get; set; }
  26. public string FUserInStore { get; set; }
  27. public string FUserOutStore { get; set; }
  28. public int? FStockID { get; set; }
  29. public int? FStockPlaceID { get; set; }
  30. public string FBatchNo { get; set; }
  31. public int? FKFPeriod { get; set; }
  32. public string FKFDate { get; set; }
  33. public string FDatePrintShort { get; set; }
  34. public decimal? FQty { get; set; }
  35. public decimal? FQtyOut { get; set; }
  36. public string FPrintType { get; set; }
  37. public int? FUserPrint { get; set; }
  38. public string FRemark1 { get; set; }
  39. public string FRemark2 { get; set; }
  40. public string FRemark3 { get; set; }
  41. public string FRemark4 { get; set; }
  42. public string FRemark5 { get; set; }
  43. public string FRemark6 { get; set; }
  44. public string FRemark7 { get; set; }
  45. public string FRemark8 { get; set; }
  46. public string FRemark9 { get; set; }
  47. public string FRemark10 { get; set; }
  48. public string FRemark { get; set; }
  49. }
  50. }