| | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | @Schema(description = "销售台账id") |
| | | private Long salesLedgerId; |
| | | |
| | | @Schema(description = "销售产品规格id") |
| | | private Long salesLedgerProductId; |
| | | |
| | | @Schema(description = "报工表id") |
| | | private Long productionProductMainId; |
| | | |
| | |
| | | @Schema(description = "工序名称") |
| | | private String technologyOperationName; |
| | | |
| | | @Schema(description = "工资修正金额") |
| | | private BigDecimal adjustAmount; |
| | | |
| | | @Schema(description = "工资修正说明") |
| | | private String adjustRemark; |
| | | |
| | | @Schema(description = "修正人") |
| | | private Long adjustUser; |
| | | |
| | | @Schema(description = "修正时间") |
| | | private LocalDateTime adjustTime; |
| | | |
| | | @Schema(description = "核算批次号") |
| | | private String accountingBatchNo; |
| | | |
| | | @Schema(description = "生产日期") |
| | | private LocalDateTime schedulingDate; |
| | | |