计件工资实体.txt 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. 程雪阳 2020/3/13 11:58:30
  2. 计件工资实体
  3. [EntityInfo("分厂", CanEdit = false, ExcelShow = true)]
  4. public string PositionFactoryName { get; set; }
  5. [EntityInfo("车间", CanEdit = false, ExcelShow = true)]
  6. public string PositionDepartmentName { get; set; }
  7. [EntityInfo("岗位", CanEdit = false, ExcelShow = true)]
  8. public string PositionName { get; set; }
  9. [EntityInfo("员工", CanEdit = false, ExcelShow = true)]
  10. public string EmployeeName { get; set; }
  11. [EntityInfo("工资", CanEdit = false, ExcelShow = true, FormatType = (int)GridDisplayFormatType.Numeric_n4)]
  12. public decimal PieceWage { get; set; }
  13. [EntityInfo("工资", CanEdit = false, IsShow =false, ExcelShow = true)]
  14. public string EmployeeCode { get; set; }
  15. [EntityInfo("岗位内码", CanEdit = false, IsShow = false)]
  16. public long? PositionId { get; set; }
  17. [EntityInfo("岗位车间内码", CanEdit = false, IsShow = false)]
  18. public long? PositionDepartmentId { get; set; }
  19. [EntityInfo("岗位分厂内码", CanEdit = false, IsShow = false)]
  20. public long? PositionFactoryId { get; set; }
  21. [EntityInfo("员工内码", CanEdit = false, IsShow = false)]
  22. public long EmployeeId { get; set; }
  23. [EntityInfo("QueryStartTime", CanEdit = false, IsShow = false)]
  24. public DateTime? QueryStartTime { get; set; }
  25. [EntityInfo("QueryEndTime", CanEdit = false, IsShow = false)]
  26. public DateTime? QueryEndTime { get; set; }
  27. 程雪阳 2020/3/13 11:59:03
  28. 计件工资明细实体
  29. [EntityInfo("员工", CanEdit = false, ExcelShow = true)]
  30. public string EmployeeName { get; set; }
  31. [EntityInfo("岗位", CanEdit = false, ExcelShow = true)]
  32. public string PositionName { get; set; }
  33. [EntityInfo("小组成员", CanEdit = false, ExcelShow = true)]
  34. public string MembersString { get; set; }
  35. [EntityInfo("工件", CanEdit = false, ExcelShow = true)]
  36. public string WorkPieceName { get; set; }
  37. [EntityInfo("工件编码", CanEdit = false, ExcelShow = true)]
  38. public string WorkPieceCode { get; set; }
  39. [EntityInfo("单价", CanEdit = false, ExcelShow = true, FormatType = (int)GridDisplayFormatType.Numeric_n4)]
  40. public decimal Pay { get; set; }
  41. [EntityInfo("分配数量", CanEdit = false, ExcelShow = true, FormatType = (int)GridDisplayFormatType.Numeric_n2)]
  42. public decimal ConfirmQuantity { get; set; }
  43. [EntityInfo("分配金额", CanEdit = false, ExcelShow = true, FormatType = (int)GridDisplayFormatType.Numeric_n4)]
  44. public decimal PieceWage { get; set; }
  45. [EntityInfo("报工确认时间", CanEdit = false, ExcelShow = true)]
  46. public DateTime? ConfirmTime { get; set; }
  47. [EntityInfo("单号", CanEdit = false, ExcelShow = true)]
  48. public string MesProductionOrderNumber { get; set; }
  49. [EntityInfo("分厂", CanEdit = false, ExcelShow = true)]
  50. public string MesProductionOrderDepartmentName { get; set; }
  51. [EntityInfo("车间", CanEdit = false, ExcelShow = true)]
  52. public string WorkShop { get; set; }
  53. [EntityInfo("大工序", CanEdit = false, ExcelShow = true)]
  54. public string MesMainProcessName { get; set; }
  55. [EntityInfo("工序", CanEdit = false, ExcelShow = true)]
  56. public string MesProcessName { get; set; }
  57. [EntityInfo("工艺内码", CanEdit = false, IsShow = false)]
  58. public long MesProcessId { get; set; }
  59. [EntityInfo("工艺编码", CanEdit = false, IsShow = false)]
  60. public string MesProcessCode { get; set; }
  61. [EntityInfo("订单状态内码", CanEdit = false, IsShow = false)]
  62. public int MesProductionOrderStatus { get; set; }
  63. [EntityInfo("订单状态", CanEdit = false, IsShow = false)]
  64. public string MesProductionOrderStatusText { get; set; }
  65. [EntityInfo("部门内码", CanEdit = false, IsShow = false)]
  66. public long? MesProductionOrderDepartmentId { get; set; }
  67. [EntityInfo("员工内码", CanEdit = false, IsShow = false)]
  68. public long EmployeeId { get; set; }
  69. [EntityInfo("订单内码", CanEdit = false, IsShow = false)]
  70. public long MesProductionOrderId { get; set; }
  71. [EntityInfo("岗位内码", CanEdit = false, IsShow = false)]
  72. public long? PositionId { get; set; }
  73. [EntityInfo("岗位的部门内码", CanEdit = false, IsShow = false)]
  74. public long? PositionDepartmentId { get; set; }
  75. [EntityInfo("确认报工内码", CanEdit = false, IsShow = false)]
  76. public long WorkOrderId { get; set; }
  77. [EntityInfo("工作组内码", CanEdit = false, IsShow = false)]
  78. public long? ConfirmWorkGroupId { get; set; }
  79. [EntityInfo("工人内码", CanEdit = false, IsShow = false)]
  80. public long? ConfirmEmployeeId { get; set; }
  81. [EntityInfo("工件内码", CanEdit = false, IsShow = false)]
  82. public long WorkPieceId { get; set; }
  83. [EntityInfo("员工编码", CanEdit = false, ExcelShow = false)]
  84. public string EmployeeCode { get; set; }