123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- package org.jeecg.modules.demo.hzz.shjsgc.xmxx.vo;
- import java.util.List;
- import org.jeecg.modules.demo.hzz.shjsgc.xmxx.entity.RmXmxx;
- import org.jeecg.modules.demo.hzz.shjsgc.xmxx.entity.RmJgjl;
- import lombok.Data;
- import org.jeecgframework.poi.excel.annotation.Excel;
- import org.jeecgframework.poi.excel.annotation.ExcelEntity;
- import org.jeecgframework.poi.excel.annotation.ExcelCollection;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import org.springframework.format.annotation.DateTimeFormat;
- import java.util.Date;
- import org.jeecg.common.aspect.annotation.Dict;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * @Description: 项目信息
- * @Author: jeecg-boot
- * @Date: 2022-04-07
- * @Version: V1.0
- */
- @Data
- @ApiModel(value="rm_xmxxPage对象", description="项目信息")
- public class RmXmxxPage {
- /**主键*/
- @ApiModelProperty(value = "主键")
- private java.lang.String id;
- /**创建人*/
- @ApiModelProperty(value = "创建人")
- private java.lang.String createBy;
- /**创建日期*/
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
- @ApiModelProperty(value = "创建日期")
- private java.util.Date createTime;
- /**更新人*/
- @ApiModelProperty(value = "更新人")
- private java.lang.String updateBy;
- /**更新日期*/
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
- @ApiModelProperty(value = "更新日期")
- private java.util.Date updateTime;
- /**所属部门*/
- @ApiModelProperty(value = "所属部门")
- private java.lang.String sysOrgCode;
- /**项目名称*/
- @Excel(name = "项目名称", width = 15)
- @ApiModelProperty(value = "项目名称")
- private java.lang.String xmmc;
- /**所在水系*/
- @Excel(name = "所在水系", width = 15, dicCode = "szsx")
- @Dict(dicCode = "szsx")
- @ApiModelProperty(value = "所在水系")
- private java.lang.String szsx;
- /**行政区划*/
- @Excel(name = "行政区划", width = 15)
- @ApiModelProperty(value = "行政区划")
- private java.lang.String xzqh;
- /**项目负责人*/
- @Excel(name = "项目负责人", width = 15)
- @ApiModelProperty(value = "项目负责人")
- private java.lang.String xmfzr;
- /**县级区划代码*/
- @Excel(name = "县级区划代码", width = 15)
- @ApiModelProperty(value = "县级区划代码")
- private java.lang.String xjqhdm;
- /**横坐标*/
- @Excel(name = "横坐标", width = 15)
- @ApiModelProperty(value = "横坐标")
- private java.lang.String hzb;
- /**纵坐标*/
- @Excel(name = "纵坐标", width = 15)
- @ApiModelProperty(value = "纵坐标")
- private java.lang.String zzb;
- /**电话*/
- @Excel(name = "电话", width = 15)
- @ApiModelProperty(value = "电话")
- private java.lang.String dha;
- /**立项情况*/
- @Excel(name = "立项情况", width = 15)
- @ApiModelProperty(value = "立项情况")
- private java.lang.String lxqk;
- /**审批年度*/
- @Excel(name = "审批年度", width = 15, format = "yyyy-MM-dd")
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
- @DateTimeFormat(pattern="yyyy-MM-dd")
- @ApiModelProperty(value = "审批年度")
- private java.util.Date spnd;
- /**防洪标准*/
- @Excel(name = "防洪标准", width = 15)
- @ApiModelProperty(value = "防洪标准")
- private java.lang.String fhbz;
- /**审批单位*/
- @Excel(name = "审批单位", width = 15)
- @ApiModelProperty(value = "审批单位")
- private java.lang.String spdw;
- /**审批级别*/
- @Excel(name = "审批级别", width = 15)
- @ApiModelProperty(value = "审批级别")
- private java.lang.String spjb;
- /**审批情况*/
- @Excel(name = "审批情况", width = 15, dicCode = "spzt")
- @Dict(dicCode = "spzt")
- @ApiModelProperty(value = "审批情况")
- private java.lang.String spqk;
- /**总体布置简述*/
- @Excel(name = "总体布置简述", width = 15)
- @ApiModelProperty(value = "总体布置简述")
- private java.lang.String ztbzjs;
- /**建设状态*/
- @Excel(name = "建设状态", width = 15, dicCode = "gcjsqk")
- @Dict(dicCode = "gcjsqk")
- @ApiModelProperty(value = "建设状态")
- private java.lang.String jszt;
- /**其他*/
- @Excel(name = "其他", width = 15)
- @ApiModelProperty(value = "其他")
- private java.lang.String qt;
- @ExcelCollection(name="监管记录")
- @ApiModelProperty(value = "监管记录")
- private List<RmJgjl> rmJgjlList;
- }
|