1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- package org.jeecg.modules.demo.hzz.axgh.hdzraxbyl.entity;
- import java.io.Serializable;
- import java.io.UnsupportedEncodingException;
- import java.util.Date;
- import java.math.BigDecimal;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import org.springframework.format.annotation.DateTimeFormat;
- import org.jeecgframework.poi.excel.annotation.Excel;
- import org.jeecg.common.aspect.annotation.Dict;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- /**
- * @Description: rm_hdzraxbyl
- * @Author: jeecg-boot
- * @Date: 2022-01-21
- * @Version: V1.0
- */
- @Data
- @TableName("rm_hdzraxbyl")
- @Accessors(chain = true)
- @EqualsAndHashCode(callSuper = false)
- @ApiModel(value="rm_hdzraxbyl对象", description="rm_hdzraxbyl")
- public class RmHdzraxbyl implements Serializable {
- private static final long serialVersionUID = 1L;
- /**id*/
- @TableId(type = IdType.ASSIGN_ID)
- @ApiModelProperty(value = "id")
- 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;
- /**geom*/
- // @Excel(name = "geom", width = 15)
- @ApiModelProperty(value = "geom")
- private java.lang.String geom;
- /**hlmc*/
- @Excel(name = "hlmc", width = 15)
- @ApiModelProperty(value = "hlmc")
- private java.lang.String hlmc;
- /**hlbm*/
- @Excel(name = "hlbm", width = 15)
- @ApiModelProperty(value = "hlbm")
- private java.lang.String hlbm;
- /**ab*/
- @Excel(name = "ab", width = 15)
- @Dict(dicCode = "ab")
- @ApiModelProperty(value = "ab")
- private java.lang.String ab;
- /**axcd*/
- @Excel(name = "axcd", width = 15)
- @ApiModelProperty(value = "axcd")
- private java.lang.Double axcd;
- /**axkd*/
- @Excel(name = "axkd", width = 15)
- @ApiModelProperty(value = "axkd")
- private java.lang.Double axkd;
- /**axmj*/
- @Excel(name = "axmj", width = 15)
- @ApiModelProperty(value = "axmj")
- private java.lang.Double axmj;
- /**geopath*/
- @ApiModelProperty(value = "geopath")
- private java.lang.String geopath;
- /**geoinfo*/
- @ApiModelProperty(value = "geoinfo")
- private java.lang.String geoinfo;
- }
|