自动化立体仓库 - WMS系统
pang.jiabao
2 天以前 d3010f0431fc1b4fceed43458738eb833ee125b0
手动添加订单备用字段默认值为空
2个文件已修改
12 ■■■■ 已修改文件
src/main/java/com/zy/asrs/entity/OrderDetl.java 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/zy/common/model/DetlDto.java 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/zy/asrs/entity/OrderDetl.java
@@ -338,21 +338,21 @@
     */
    @ApiModelProperty(value = "备用1")
    @TableField("box_type1")
    private String boxType1 = "1";
    private String boxType1 = "";
    /**
     * 备用2
     */
    @ApiModelProperty(value = "备用2")
    @TableField("box_type2")
    private String boxType2 = "1";
    private String boxType2 = "";
    /**
     * 备用3
     */
    @ApiModelProperty(value = "备用3")
    @TableField("box_type3")
    private String boxType3 = "1";
    private String boxType3 = "";
    public OrderDetl() {
    }
src/main/java/com/zy/common/model/DetlDto.java
@@ -36,9 +36,9 @@
    private Long lineNumber = 1L;
    private String boxType1 = "1";
    private String boxType2 = "1";
    private String boxType3 = "1";
    private String boxType1 = "";
    private String boxType2 = "";
    private String boxType3 = "";
    public DetlDto() {
    }