| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.alibaba.fastjson.annotation.JSONField;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * entity:AttMampuInfo
- *
- * @author lhc
- * @date 2019-4-20
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class AttMampuInfo extends BaseBean implements Serializable {
- // 主键ID
- @ApiModelProperty(value = "主键ID", name = "id")
- private String id;
- // 名称
- @ApiModelProperty(value = "名称", name = "nm")
- private String nm;
- // 父ID
- @ApiModelProperty(value = "父ID", name = "pid")
- private String pid;
- // 父id名称dc/insp/rsvrRgstr
- @ApiModelProperty(value = "父id名称", name = "pidName")
- private String pidName;
- // 级别
- @ApiModelProperty(value = "级别", name = "lev")
- private String lev;
- // 顺序
- @ApiModelProperty(value = "顺序", name = "ord")
- private String ord;
- // 登记表ID
- @ApiModelProperty(value = "登记表ID", name = "regId")
- private String regId;
- // 记录人员ID
- @ApiModelProperty(value = "记录人员ID", name = "persId")
- private String persId;
- // 创建时间
- @ApiModelProperty(value = "创建时间", name = "intm")
- @JSONField(format = "yyyy-MM-dd")//数据库导出页面时json格式化
- private Date intm;
- // 修改时间
- @ApiModelProperty(value = "修改时间", name = "uptm")
- @JSONField(format = "yyyy-MM-dd HH:mm:ss")//数据库导出页面时json格式化
- private Date uptm;
- // 高德经度
- @ApiModelProperty(value = "高德经度", name = "lgtd")
- private Double lgtd;
- // 高德纬度
- @ApiModelProperty(value = "高德纬度", name = "lttd")
- private Double lttd;
- // PC经度
- @ApiModelProperty(value = "PC经度", name = "lgtdPc")
- private Double lgtdPc;
- // PC纬度
- @ApiModelProperty(value = "PC纬度", name = "lttdPc")
- private Double lttdPc;
- public AttMampuInfo() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getNm() {
- return nm;
- }
- public void setNm(String nm) {
- this.nm = nm;
- }
- public String getPid() {
- return pid;
- }
- public void setPid(String pid) {
- this.pid = pid;
- }
- public String getPidName() {
- return pidName;
- }
- public void setPidName(String pidName) {
- this.pidName = pidName;
- }
- public String getLev() {
- return lev;
- }
- public void setLev(String lev) {
- this.lev = lev;
- }
- public String getOrd() {
- return ord;
- }
- public void setOrd(String ord) {
- this.ord = ord;
- }
- public String getRegId() {
- return regId;
- }
- public void setRegId(String regId) {
- this.regId = regId;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public Date getUptm() {
- return uptm;
- }
- public void setUptm(Date uptm) {
- this.uptm = uptm;
- }
- public Double getLgtd() {
- return lgtd;
- }
- public void setLgtd(Double lgtd) {
- this.lgtd = lgtd;
- }
- public Double getLttd() {
- return lttd;
- }
- public void setLttd(Double lttd) {
- this.lttd = lttd;
- }
- public Double getLgtdPc() {
- return lgtdPc;
- }
- public void setLgtdPc(Double lgtdPc) {
- this.lgtdPc = lgtdPc;
- }
- public Double getLttdPc() {
- return lttdPc;
- }
- public void setLttdPc(Double lttdPc) {
- this.lttdPc = lttdPc;
- }
- }
|