自动化立体仓库 - WCS系统
*
lsh
2025-04-24 388353ed9bad250663e8ad8129463d1ea80d46e6
src/main/java/com/zy/asrs/entity/DataResource.java
@@ -13,31 +13,34 @@
import java.io.Serializable;
@Data
@TableName("wcs_data_resource")
@TableName("\"SOURCE\".\"wcs_data_resource\"")
public class DataResource implements Serializable {
    private static final long serialVersionUID = 1L;
    @ApiModelProperty(value= "")
    @TableId(value = "id", type = IdType.AUTO)
    @TableId(value = "ID", type = IdType.AUTO)
    private Integer id;
    @ApiModelProperty(value= "")
    @TableField("DATA")
    private String data;
    @ApiModelProperty(value= "")
    @TableField("NAME")
    private String name;
    @ApiModelProperty(value= "")
    @TableField("resource_id")
    @TableField("RESOURCE_ID")
    private Integer resourceId;
    @ApiModelProperty(value= "")
    @TableField("create_time")
    @TableField("CREATE_TIME")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date createTime;
    @ApiModelProperty(value= "备注")
    @TableField("MEMO")
    private String memo;
    public DataResource() {}