| | |
| | | |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @Data |
| | | @Schema(name = "ProductionProductMainDto", description = "生产报工查询对象") |
| | | @Schema(name = "ProductionProductMainDto", description = "production report query dto") |
| | | public class ProductionProductMainDto extends ProductionProductMain { |
| | | |
| | | @Schema(description = "产品工艺路线明细ID") |
| | | @Schema(description = "product process route item id") |
| | | private Long productProcessRouteItemId; |
| | | |
| | | @Schema(description = "生产报工表id") |
| | | @Schema(description = "production report id") |
| | | private Long productMainId; |
| | | |
| | | @Schema(description = "租户ID") |
| | | @Schema(description = "tenant id") |
| | | private Long tenantId; |
| | | |
| | | @Schema(description = "工单编号") |
| | | @Schema(description = "work order no") |
| | | private String workOrderNo; |
| | | |
| | | @Schema(description = "工单状态") |
| | | @Schema(description = "work order status") |
| | | private String workOrderStatus; |
| | | |
| | | @Schema(description = "昵称") |
| | | @Schema(description = "nick name") |
| | | private String nickName; |
| | | |
| | | @Schema(description = "数量") |
| | | @Schema(description = "quantity") |
| | | private BigDecimal quantity; |
| | | |
| | | @Schema(description = "报废数量") |
| | | @Schema(description = "scrap quantity") |
| | | private BigDecimal scrapQty; |
| | | |
| | | @Schema(description = "产品名称") |
| | | @Schema(description = "product name") |
| | | private String productName; |
| | | |
| | | @Schema(description = "产品型号名称") |
| | | @Schema(description = "product model name") |
| | | private String productModelName; |
| | | |
| | | @Schema(description = "单位") |
| | | @Schema(description = "unit") |
| | | private String unit; |
| | | |
| | | @Schema(description = "销售合同编号") |
| | | @Schema(description = "sales contract no") |
| | | private String salesContractNo; |
| | | |
| | | @Schema(description = "排产日期") |
| | | @Schema(description = "scheduling date") |
| | | private LocalDate schedulingDate; |
| | | |
| | | @Schema(description = "排产人员名称") |
| | | @Schema(description = "scheduling user name") |
| | | private String schedulingUserName; |
| | | |
| | | @Schema(description = "客户名称") |
| | | @Schema(description = "customer name") |
| | | private String customerName; |
| | | |
| | | @Schema(description = "工序") |
| | | @Schema(description = "process") |
| | | private String process; |
| | | |
| | | @Schema(description = "工序参数列表") |
| | | @Schema(description = "salary quota") |
| | | private BigDecimal workHours; |
| | | |
| | | @Schema(description = "wages") |
| | | private BigDecimal wages; |
| | | |
| | | @Schema(description = "operation param list") |
| | | private List<ProductionOrderRoutingOperationParam> productionOperationParamList; |
| | | } |