| | |
| | | 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; |
| | |
| | | @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) { |
| | |
| | | return id; |
| | | } |
| | | |
| | | public String getIsAsrs$(){ |
| | | if (this.isAsrs == 0) { |
| | | return "否"; |
| | | }else { |
| | | return "是"; |
| | | } |
| | | } |
| | | |
| | | public void setId(Integer id) { |
| | | this.id = id; |
| | | } |