123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- 程雪阳 2020/3/13 11:58:30
- 计件工资实体
- [EntityInfo("分厂", CanEdit = false, ExcelShow = true)]
- public string PositionFactoryName { get; set; }
- [EntityInfo("车间", CanEdit = false, ExcelShow = true)]
- public string PositionDepartmentName { get; set; }
- [EntityInfo("岗位", CanEdit = false, ExcelShow = true)]
- public string PositionName { get; set; }
- [EntityInfo("员工", CanEdit = false, ExcelShow = true)]
- public string EmployeeName { get; set; }
- [EntityInfo("工资", CanEdit = false, ExcelShow = true, FormatType = (int)GridDisplayFormatType.Numeric_n4)]
- public decimal PieceWage { get; set; }
- [EntityInfo("工资", CanEdit = false, IsShow =false, ExcelShow = true)]
- public string EmployeeCode { get; set; }
- [EntityInfo("岗位内码", CanEdit = false, IsShow = false)]
- public long? PositionId { get; set; }
- [EntityInfo("岗位车间内码", CanEdit = false, IsShow = false)]
- public long? PositionDepartmentId { get; set; }
- [EntityInfo("岗位分厂内码", CanEdit = false, IsShow = false)]
- public long? PositionFactoryId { get; set; }
- [EntityInfo("员工内码", CanEdit = false, IsShow = false)]
- public long EmployeeId { get; set; }
- [EntityInfo("QueryStartTime", CanEdit = false, IsShow = false)]
- public DateTime? QueryStartTime { get; set; }
- [EntityInfo("QueryEndTime", CanEdit = false, IsShow = false)]
- public DateTime? QueryEndTime { get; set; }
- 程雪阳 2020/3/13 11:59:03
- 计件工资明细实体
- [EntityInfo("员工", CanEdit = false, ExcelShow = true)]
- public string EmployeeName { get; set; }
- [EntityInfo("岗位", CanEdit = false, ExcelShow = true)]
- public string PositionName { get; set; }
- [EntityInfo("小组成员", CanEdit = false, ExcelShow = true)]
- public string MembersString { get; set; }
- [EntityInfo("工件", CanEdit = false, ExcelShow = true)]
- public string WorkPieceName { get; set; }
- [EntityInfo("工件编码", CanEdit = false, ExcelShow = true)]
- public string WorkPieceCode { get; set; }
- [EntityInfo("单价", CanEdit = false, ExcelShow = true, FormatType = (int)GridDisplayFormatType.Numeric_n4)]
- public decimal Pay { get; set; }
- [EntityInfo("分配数量", CanEdit = false, ExcelShow = true, FormatType = (int)GridDisplayFormatType.Numeric_n2)]
- public decimal ConfirmQuantity { get; set; }
- [EntityInfo("分配金额", CanEdit = false, ExcelShow = true, FormatType = (int)GridDisplayFormatType.Numeric_n4)]
- public decimal PieceWage { get; set; }
- [EntityInfo("报工确认时间", CanEdit = false, ExcelShow = true)]
- public DateTime? ConfirmTime { get; set; }
- [EntityInfo("单号", CanEdit = false, ExcelShow = true)]
- public string MesProductionOrderNumber { get; set; }
- [EntityInfo("分厂", CanEdit = false, ExcelShow = true)]
- public string MesProductionOrderDepartmentName { get; set; }
- [EntityInfo("车间", CanEdit = false, ExcelShow = true)]
- public string WorkShop { get; set; }
- [EntityInfo("大工序", CanEdit = false, ExcelShow = true)]
- public string MesMainProcessName { get; set; }
- [EntityInfo("工序", CanEdit = false, ExcelShow = true)]
- public string MesProcessName { get; set; }
-
- [EntityInfo("工艺内码", CanEdit = false, IsShow = false)]
- public long MesProcessId { get; set; }
- [EntityInfo("工艺编码", CanEdit = false, IsShow = false)]
- public string MesProcessCode { get; set; }
- [EntityInfo("订单状态内码", CanEdit = false, IsShow = false)]
- public int MesProductionOrderStatus { get; set; }
- [EntityInfo("订单状态", CanEdit = false, IsShow = false)]
- public string MesProductionOrderStatusText { get; set; }
- [EntityInfo("部门内码", CanEdit = false, IsShow = false)]
- public long? MesProductionOrderDepartmentId { get; set; }
- [EntityInfo("员工内码", CanEdit = false, IsShow = false)]
- public long EmployeeId { get; set; }
- [EntityInfo("订单内码", CanEdit = false, IsShow = false)]
- public long MesProductionOrderId { get; set; }
- [EntityInfo("岗位内码", CanEdit = false, IsShow = false)]
- public long? PositionId { get; set; }
- [EntityInfo("岗位的部门内码", CanEdit = false, IsShow = false)]
- public long? PositionDepartmentId { get; set; }
- [EntityInfo("确认报工内码", CanEdit = false, IsShow = false)]
- public long WorkOrderId { get; set; }
- [EntityInfo("工作组内码", CanEdit = false, IsShow = false)]
- public long? ConfirmWorkGroupId { get; set; }
- [EntityInfo("工人内码", CanEdit = false, IsShow = false)]
- public long? ConfirmEmployeeId { get; set; }
- [EntityInfo("工件内码", CanEdit = false, IsShow = false)]
- public long WorkPieceId { get; set; }
- [EntityInfo("员工编码", CanEdit = false, ExcelShow = false)]
- public string EmployeeCode { get; set; }
|