123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- package org.jeecg.modules.demo.hzz.xxgl.hdmx.entity;
- import java.io.Serializable;
- import java.io.UnsupportedEncodingException;
- import java.util.Date;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import org.jeecgframework.poi.excel.annotation.Excel;
- import lombok.Data;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import org.springframework.format.annotation.DateTimeFormat;
- import org.jeecg.common.aspect.annotation.Dict;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * @Description: 河道明细表
- * @Author: jeecg-boot
- * @Date: 2022-04-06
- * @Version: V1.0
- */
- @Data
- @TableName("rm_hdmxb")
- @ApiModel(value="rm_hdmxb对象", description="河道明细表")
- public class RmHdmxb implements Serializable {
- private static final long serialVersionUID = 1L;
- /**主键*/
- @TableId(type = IdType.ASSIGN_ID)
- @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 hlbm;
- /**河流名称*/
- @Excel(name = "河流名称", width = 15)
- @ApiModelProperty(value = "河流名称")
- private java.lang.String hlmc;
- /**河流类别*/
- @Excel(name = "河流类别", width = 15, dicCode = "hllb")
- @Dict(dicCode = "hllb")
- @ApiModelProperty(value = "河流类别")
- private java.lang.String hllb;
- /**流域面积(km²)*/
- @Excel(name = "流域面积(km²)", width = 15)
- @ApiModelProperty(value = "流域面积(km²)")
- private java.lang.Double lymj;
- /**境内河流长度(km)*/
- @Excel(name = "境内河流长度(km)", width = 15)
- @ApiModelProperty(value = "境内河流长度(km)")
- private java.lang.Double jnhlcd;
- /**流经县(市、区)*/
- @Excel(name = "流经县(市、区)", width = 15)
- @ApiModelProperty(value = "流经县(市、区)")
- private java.lang.String ljxsq;
- /**有防洪保护对象(目标)或规划设计中有防洪任务*/
- @Excel(name = "有防洪保护对象(目标)或规划设计中有防洪任务", width = 15)
- @Dict(dicCode = "whether")
- @ApiModelProperty(value = "有防洪保护对象(目标)或规划设计中有防洪任务")
- private java.lang.String yfhbhdx;
- /**有排涝受益的村庄和农田*/
- @Excel(name = "有排涝受益的村庄和农田", width = 15)
- @Dict(dicCode = "whether")
- @ApiModelProperty(value = "有排涝受益的村庄和农田")
- private java.lang.String yplsydczhnt;
- /**是否有堤防*/
- @Excel(name = "是否有堤防", width = 15)
- @Dict(dicCode = "whether")
- @ApiModelProperty(value = "是否有堤防")
- private java.lang.String sfydf;
- /**备注*/
- @Excel(name = "备注", width = 15)
- @ApiModelProperty(value = "备注")
- private java.lang.String bz;
- }
|