自动化立体仓库 - WMS系统
Junjie
2023-05-24 cf0353e26f5e5c698d6eff9a31d0424bfe5838d9
src/main/java/com/zy/asrs/entity/Mat.java
@@ -341,8 +341,8 @@
     * 物料类型{1:单品,2:高频,3:混放}
     */
    @ApiModelProperty(value= "物料类型")
    @TableField("man_type")
    private Integer manType;
    @TableField("mat_type")
    private Integer matType;
    public Mat() {}
@@ -565,11 +565,11 @@
        }
    }
    public String getManType$() {
        if (this.manType == null) {
    public String getMatType$() {
        if (this.matType == null) {
            return "";
        }
        switch (this.manType) {
        switch (this.matType) {
            case 1:
                return "单品";
            case 2: