| | |
| | | import java.time.LocalDate; |
| | | |
| | | @Data |
| | | @Schema(name = "ProductionAccountVo", description = "生产核算分页返回对象") |
| | | @Schema(name = "ProductionAccountVo", description = "production account page result") |
| | | public class ProductionAccountVo { |
| | | |
| | | @Schema(description = "客户合同号") |
| | | @Schema(description = "customer contract no") |
| | | private String customerContractNo; |
| | | |
| | | @Schema(description = "项目名称") |
| | | @Schema(description = "project name") |
| | | private String projectName; |
| | | |
| | | @Schema(description = "客户名称") |
| | | @Schema(description = "customer name") |
| | | private String customerName; |
| | | |
| | | @Schema(description = "产品大类") |
| | | @Schema(description = "product category") |
| | | private String productCategory; |
| | | |
| | | @Schema(description = "规格型号") |
| | | @Schema(description = "specification model") |
| | | private String specificationModel; |
| | | |
| | | @Schema(description = "单位") |
| | | @Schema(description = "unit") |
| | | private String unit; |
| | | |
| | | @Schema(description = "生产人ID") |
| | | @Schema(description = "scheduling user id") |
| | | private Long schedulingUserId; |
| | | |
| | | @Schema(description = "生产人名称") |
| | | @Schema(description = "scheduling user name") |
| | | private String schedulingUserName; |
| | | |
| | | @Schema(description = "工资") |
| | | @Schema(description = "wages") |
| | | private BigDecimal wages; |
| | | |
| | | @Schema(description = "生产数量") |
| | | @Schema(description = "finished quantity") |
| | | private BigDecimal finishedNum; |
| | | |
| | | @Schema(description = "工时定额") |
| | | @Schema(description = "salary quota") |
| | | private BigDecimal workHours; |
| | | |
| | | @Schema(description = "工序") |
| | | @Schema(description = "output rate") |
| | | private String outputRate; |
| | | |
| | | @Schema(description = "process") |
| | | private String process; |
| | | |
| | | @Schema(description = "生产日期") |
| | | @Schema(description = "scheduling date") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate schedulingDate; |
| | | |
| | | @Schema(description = "生产月份(yyyy-MM)") |
| | | @Schema(description = "scheduling month(yyyy-MM)") |
| | | private String schedulingMonth; |
| | | } |