Lius
2024-08-22 f59452ac384766a21500857e89928a8abc0e75b5
lxzn-module-mdc/src/main/java/org/jeecg/modules/mdcJc/entity/MdcOnLineQueue.java
@@ -22,7 +22,7 @@
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("mdcJc_OnLine_Queue")
@TableName("mdcJc_OnLineQueue")
@ApiModel(value = "自动线上线")
public class MdcOnLineQueue implements Serializable {
    private static final long serialVersionUID = -4733120585358211415L;
@@ -32,12 +32,16 @@
    @TableField(value = "id")
    private Integer id;
    @TableField(value = "devCode")
    private String devCode;
    @TableField(value = "partBarCode")
    private String partBarCode;
    @TableField(value = "productNo")
    private String productNo;
    @TableField(value = "productName")
    private String productName;
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField(value = "scanTime")
    private Date scanTime;
    @TableField(value = "remark")
@@ -49,5 +53,6 @@
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "创建日期")
    @TableField(value = "createTime")
    private Date createTime;
}