#
mrzhssss
2022-09-05 03a853465a52d4150acc261406f3c84b4d0f0b22
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
package zy.cloud.wms.manager.entity;
 
import com.core.common.Cools;import io.swagger.annotations.ApiModelProperty;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.enums.IdType;
import io.swagger.annotations.ApiModelProperty;
import com.baomidou.mybatisplus.annotations.TableField;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.annotations.ApiModelProperty;
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;
 
    @ApiModelProperty(value= "")
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty(value= "")
    @TableField("type_id")
    private Integer typeId;
 
    @ApiModelProperty(value= "")
    @TableField("type_name")
    private String typeName;
 
    @ApiModelProperty(value= "")
    @TableField("type_status")
    private Integer typeStatus;
 
    @ApiModelProperty(value= "")
    @TableField("type_class")
    private Integer typeClass;
 
    @ApiModelProperty(value= "")
    @TableField("str_1")
    private String str1;
 
    @ApiModelProperty(value= "")
    @TableField("str_2")
    private String str2;
 
    @ApiModelProperty(value= "")
    @TableField("str_3")
    private String str3;
 
    @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) {
        this.id = id;
        this.typeId = typeId;
        this.typeName = typeName;
        this.typeStatus = typeStatus;
        this.typeClass = typeClass;
        this.str1 = str1;
        this.str2 = str2;
        this.str3 = str3;
    }
 
//    ProjectType projectType = new ProjectType(
//            null,    // [非空]
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null    // 
//    );
 
    public Integer getId() {
        return id;
    }
 
    public String getIsAsrs$(){
        if (this.isAsrs == 0) {
            return "否";
        }else {
            return "是";
        }
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getTypeId() {
        return typeId;
    }
 
    public void setTypeId(Integer typeId) {
        this.typeId = typeId;
    }
 
    public String getTypeName() {
        return typeName;
    }
 
    public void setTypeName(String typeName) {
        this.typeName = typeName;
    }
 
    public Integer getTypeStatus() {
        return typeStatus;
    }
 
    public void setTypeStatus(Integer typeStatus) {
        this.typeStatus = typeStatus;
    }
 
    public Integer getTypeClass() {
        return typeClass;
    }
 
    public void setTypeClass(Integer typeClass) {
        this.typeClass = typeClass;
    }
 
    public String getStr1() {
        return str1;
    }
 
    public void setStr1(String str1) {
        this.str1 = str1;
    }
 
    public String getStr2() {
        return str2;
    }
 
    public void setStr2(String str2) {
        this.str2 = str2;
    }
 
    public String getStr3() {
        return str3;
    }
 
    public void setStr3(String str3) {
        this.str3 = str3;
    }
 
 
}