| | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | |
| | | /** |
| | | * 销售台账产品id(sales_ledger_product) |
| | | */ |
| | | @ApiModelProperty(value = "销售台账产品id") |
| | | private Long saleLedgerProductId; |
| | | |
| | | /** |
| | | * 销售台账产品id(sales_ledger_product) |
| | | * 产品规格id |
| | | */ |
| | | @ApiModelProperty(value = "销售台账产品id") |
| | | @ApiModelProperty(value = "产品规格id") |
| | | private Long productModelId; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @ApiModelProperty(value = "工艺路线id") |
| | | private Long routeId; |
| | | |
| | | /** |
| | | * 优先级 |
| | | */ |
| | | @ApiModelProperty(value = "优先级") |
| | | private String priority; |
| | | |
| | | /** |
| | | * 生产批号 |
| | | */ |
| | | @ApiModelProperty(value = "生产批号") |
| | | private String batchNo; |
| | | |
| | | |
| | | /** |
| | | * 生产订单号 |
| | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime endTime; |
| | | |
| | | |
| | | /** |
| | | * 备注 |
| | | */ |
| | | @ApiModelProperty(value = "备注") |
| | | private String remark; |
| | | |
| | | } |