| | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ycl.system.domain.base.AbsEntity; |
| | | import com.ycl.system.domain.base.AbsUUIDEntity; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | |
| | | /** 状态 */ |
| | | private String status; |
| | | |
| | | @TableField("department") |
| | | /** 主管部门 */ |
| | | private Long department; |
| | | |
| | | @TableField("unit") |
| | | /** 业主单位 */ |
| | | private Long unit; |
| | | |
| | | @TableField("parent_id") |
| | | private String parent; |
| | | |
| | | @TableField("year") |
| | | /** 年份 */ |
| | | private String year; |
| | | |
| | | @TableField("build_content") |
| | | /** 建设内容 */ |
| | | private String buildContent; |
| | | |
| | | } |