package org.jeecg.modules.demo.hzz.shjsgc.xmrk.entity; import java.io.Serializable; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import org.jeecg.common.aspect.annotation.Dict; import lombok.Data; import com.fasterxml.jackson.annotation.JsonFormat; import org.springframework.format.annotation.DateTimeFormat; import org.jeecgframework.poi.excel.annotation.Excel; import java.util.Date; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.UnsupportedEncodingException; /** * @Description: 涉河部分工程信息 * @Author: jeecg-boot * @Date: 2022-03-31 * @Version: V1.0 */ @Data @TableName("rm_axshbfgcxxb") @ApiModel(value = "rm_axshbfgcxxb对象", description = "涉河部分工程信息") public class RmAxshbfgcxxb implements Serializable { private static final long serialVersionUID = 1L; /** * 主键 */ @TableId(type = IdType.ASSIGN_ID) @ApiModelProperty(value = "主键") private String id; /** * 创建人 */ @ApiModelProperty(value = "创建人") private String createBy; /** * 创建日期 */ @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @ApiModelProperty(value = "创建日期") private Date createTime; /** * 更新人 */ @ApiModelProperty(value = "更新人") private String updateBy; /** * 更新日期 */ @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @ApiModelProperty(value = "更新日期") private Date updateTime; /** * 所属部门 */ @ApiModelProperty(value = "所属部门") private String sysOrgCode; /** * 工程名称 */ @Excel(name = "工程名称", width = 15) @ApiModelProperty(value = "工程名称") private String gcmc; /** * 工程位置 */ @Excel(name = "工程位置", width = 15) @ApiModelProperty(value = "工程位置") private String gcwz; /** * 涉及河段 */ @Excel(name = "涉及河段", width = 15) @ApiModelProperty(value = "涉及河段") private String sjhd; /** * 涉河类型 */ @Excel(name = "涉河类型", width = 15, dicCode = "id", dictTable = "sys_category", dicText = "name") @Dict(dicCode = "id", dictTable = "sys_category", dicText = "name") @ApiModelProperty(value = "涉河类型") private String shlx; /** * 经度 */ @Excel(name = "经度", width = 15) @ApiModelProperty(value = "经度") private String jd; /** * 纬度 */ @Excel(name = "纬度", width = 15) @ApiModelProperty(value = "纬度") private String wd; /** * 工程布置简况 */ @Excel(name = "工程布置简况", width = 15) @ApiModelProperty(value = "工程布置简况") private String gcbzqk; /** * 建设状态 */ @Excel(name = "建设状态", width = 15) @Dict(dicCode = "gcjsqk") @ApiModelProperty(value = "建设状态") private String jszt; /** * 工期开始日期 */ @Excel(name = "工期开始日期", width = 15, format = "yyyy年MM月dd日") @JsonFormat(timezone = "GMT+8", pattern = "yyyy年MM月dd日") @DateTimeFormat(pattern = "yyyy年MM月dd日") @ApiModelProperty(value = "工期开始日期") private Date gqksrq; /** * 工期结束日期 */ @Excel(name = "工期结束日期", width = 15, format = "yyyy年MM月dd日") @JsonFormat(timezone = "GMT+8", pattern = "yyyy年MM月dd日") @DateTimeFormat(pattern = "yyyy年MM月dd日") @ApiModelProperty(value = "工期结束日期") private Date gqjsrq; /** * 河道岸线利用情况 */ @Excel(name = "河道岸线利用情况", width = 15) @ApiModelProperty(value = "河道岸线利用情况") private String hdaxlyqk; /** * 河道岸线占用长度 */ @Excel(name = "河道岸线占用长度", width = 15) @ApiModelProperty(value = "河道岸线占用长度") private String hdaxzycd; /** * 河道岸线占用面积 */ @Excel(name = "河道岸线占用面积", width = 15) @ApiModelProperty(value = "河道岸线占用面积") private String hdaxzymj; /** * 占用河道管理范围情况 */ @Excel(name = "占用河道管理范围情况", width = 15) @ApiModelProperty(value = "占用河道管理范围情况") private String zyhdglfw; /** * 建设期临时设施情况 */ @Excel(name = "建设期临时设施情况", width = 15) @ApiModelProperty(value = "建设期临时设施情况") private String jsqlsssqk; /** * 现场联系人 */ @Excel(name = "现场联系人", width = 15) @ApiModelProperty(value = "现场联系人") private String xclxr; /** * 电话 */ @Excel(name = "电话", width = 15) @ApiModelProperty(value = "电话") private String dh; /** * 其他 */ @Excel(name = "其他", width = 15) @ApiModelProperty(value = "其他") private String qt; /** * 主键 */ @ApiModelProperty(value = "主键") private String mainId; /** * geoinfo */ @Excel(name = "geoinfo", width = 15) @ApiModelProperty(value = "geoinfo") private String geoinfo; }