#
whycq
2022-09-09 d113a9c68c36e9e54ffe56342e30d59e5ee0629d
src/main/java/zy/cloud/wms/manager/entity/ProjectType.java
@@ -13,9 +13,12 @@
import io.swagger.annotations.ApiModelProperty;
import com.baomidou.mybatisplus.annotations.TableName;
import lombok.Data;
import java.io.Serializable;
@TableName("sys_project_type")
@Data
public class ProjectType implements Serializable {
    private static final long serialVersionUID = 1L;
@@ -52,6 +55,13 @@
    @TableField("str_3")
    private String str3;
    /**
     * 0:常规项目
     * 1:集成项目
     */
    @TableField("is_asrs")
    private Integer isAsrs;
    public ProjectType() {}
    public ProjectType(Integer id,Integer typeId,String typeName,Integer typeStatus,Integer typeClass,String str1,String str2,String str3) {
@@ -80,6 +90,14 @@
        return id;
    }
    public String getIsAsrs$(){
        if (this.isAsrs == 0) {
            return "常规项目";
        }else {
            return "集成项目";
        }
    }
    public void setId(Integer id) {
        this.id = id;
    }