| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 | package org.jeecg.modules.demo.hzz.xxgl.hdmx.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-04-06 * @Version: V1.0 */@Data@TableName("rm_zdmxxgl")@ApiModel(value="rm_zdmxxgl对象", description="纵断面信息")public class RmZdmxxgl 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 hdbm;	/**河道名称*/	@Excel(name = "河道名称", width = 15)    @ApiModelProperty(value = "河道名称")    private java.lang.String hdmc;	/**流域面积*/	@Excel(name = "流域面积", width = 15)    @ApiModelProperty(value = "流域面积")    private java.lang.Double lymj;	/**河底纵断面*/	@Excel(name = "河底纵断面", width = 15)    @ApiModelProperty(value = "河底纵断面")    private java.lang.String hdzdm;	/**堤防(河岸)纵断面*/	@Excel(name = "堤防(河岸)纵断面", width = 15)    @ApiModelProperty(value = "堤防(河岸)纵断面")    private java.lang.String dfzdm;	/**数据与横断面信息中比降*/	@Excel(name = "数据与横断面信息中比降", width = 15)    @ApiModelProperty(value = "数据与横断面信息中比降")    private java.lang.String sjyhdmxxzbj;	/**河底高程*/	@Excel(name = "河底高程", width = 15)    @ApiModelProperty(value = "河底高程")    private java.lang.Double hdgc;	/**堤顶高程*/	@Excel(name = "堤顶高程", width = 15)    @ApiModelProperty(value = "堤顶高程")    private java.lang.Double ddgc;	/**备注*/	@Excel(name = "备注", width = 15)    @ApiModelProperty(value = "备注")    private java.lang.String bz;	/**河流ID*/    @ApiModelProperty(value = "河流ID")    private java.lang.String rvid;}
 |