干燥机配套车间生产管理系统/云平台服务端
baoshiwei
2023-03-16 22db0b6b9b3a5905c1793107c2c1c2a00b265091
jeecg-module-dry/jeecg-module-dry-api/src/main/java/org/jeecg/modules/dry/entity/DryOrder.java
@@ -17,7 +17,7 @@
import lombok.experimental.Accessors;
/**
 * @Description: 干燥批次
 * @Description: 干燥工单
 * @Author: jeecg-boot
 * @Date:   2023-03-08
 * @Version: V1.0
@@ -26,7 +26,7 @@
@TableName("dry_order")
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = false)
@ApiModel(value="dry_order对象", description="干燥批次")
@ApiModel(value="dry_order对象", description="干燥工单")
public class DryOrder implements Serializable {
    private static final long serialVersionUID = 1L;
@@ -34,15 +34,15 @@
   @TableId(type = IdType.ASSIGN_ID)
    @ApiModelProperty(value = "id")
    private String id;
   /**批次时间*/
   @Excel(name = "批次时间", width = 15, format = "yyyy-MM-dd")
   /**工单时间*/
   @Excel(name = "工单时间", width = 15, format = "yyyy-MM-dd")
   @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern="yyyy-MM-dd")
    @ApiModelProperty(value = "批次时间")
    @ApiModelProperty(value = "工单时间")
    private Date orderTime;
   /**批次号*/
   @Excel(name = "批次号", width = 15)
    @ApiModelProperty(value = "批次号")
   /**工单号*/
   @Excel(name = "工单号", width = 15)
    @ApiModelProperty(value = "工单号")
    private String code;
   /**药材*/
   @Excel(name = "药材", width = 15, dictTable = "dry_herb", dicText = "name", dicCode = "id")
@@ -107,9 +107,9 @@
    @DateTimeFormat(pattern="yyyy-MM-dd")
    @ApiModelProperty(value = "更新时间")
    private Date updateTime;
   /**批次状态*/
   @Excel(name = "批次状态", width = 15)
    @ApiModelProperty(value = "批次状态")
   /**工单状态*/
   @Excel(name = "工单状态", width = 15)
    @ApiModelProperty(value = "工单状态")
    private Integer orderStatus;
   /**操作人*/
   @Excel(name = "操作人", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "id")