1
zhang
昨天 3a49654f51096d4f9f95f4a5e8198e168e38a0c5
zy-acs-manager/src/main/java/com/zy/acs/manager/manager/entity/StaType.java
@@ -34,6 +34,9 @@
    @ApiModelProperty(value= "名称")
    private String name;
    @ApiModelProperty(value = "是否检测信号")
    private Integer checkType;
    /**
     * 状态 1: 正常  0: 冻结  
     */
@@ -82,7 +85,8 @@
    @ApiModelProperty(value= "备注")
    private String memo;
    public StaType() {}
    public StaType() {
    }
    public StaType(String uuid,String name,Integer status,Integer deleted,Long tenantId,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) {
        this.uuid = uuid;
@@ -111,7 +115,9 @@
//    );
    public String getStatus$(){
        if (null == this.status){ return null; }
        if (null == this.status) {
            return null;
        }
        switch (this.status){
            case 1:
                return "正常";
@@ -123,7 +129,9 @@
    }
    public Boolean getStatusBool(){
        if (null == this.status){ return null; }
        if (null == this.status) {
            return null;
        }
        switch (this.status){
            case 1:
                return true;