| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * entity:BisInspKeyRegSecUnit
- *
- * @author lhc
- * @date 2019-4-20
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspKeyRegSecUnit extends BaseBean implements Serializable {
- // 主键ID
- @ApiModelProperty(value = "主键ID", name = "id")
- private String id;
- // 标段ID
- @ApiModelProperty(value = "标段ID", name = "secId")
- private String secId;
- // 单位名称
- @ApiModelProperty(value = "单位名称", name = "nm")
- private String nm;
- // 单位性质
- @ApiModelProperty(value = "单位性质 1:项目法人(建设单位) 2:勘察设计单位 3:监理单位 4:施工单位 5:金属结构及机电设备安装单位 6:安全监测单位 7:质量检测单位 9:其他", name = "nature")
- private String nature;
- // 监管模式
- @ApiModelProperty(value = "监管模式 1:直管 2:代建", name = "government")
- private String government;
- // 记录人员ID
- @ApiModelProperty(value = "记录人员ID", name = "persId")
- private String persId;
- // 创建时间
- @ApiModelProperty(value = "创建时间", name = "intm")
- private Date intm;
- // 最后修改时间
- @ApiModelProperty(value = "最后修改时间", name = "uptm")
- private Date uptm;
- @ApiModelProperty("任务对象id")
- private String objId;
- @ApiModelProperty(value = "高德经度", name = "lgtd")
- private Double lgtd;
- // 高德纬度
- @ApiModelProperty(value = "高德纬度", name = "lttd")
- private Double lttd;
- private String unitName;
- public String getUnitName() {
- return unitName;
- }
- public void setUnitName(String unitName) {
- this.unitName = unitName;
- }
- 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;
- }
- @Override
- public String getObjId() {
- return objId;
- }
- @Override
- public void setObjId(String objId) {
- this.objId = objId;
- }
- public BisInspKeyRegSecUnit() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getSecId() {
- return secId;
- }
- public void setSecId(String secId) {
- this.secId = secId;
- }
- public String getNm() {
- return nm;
- }
- public void setNm(String nm) {
- this.nm = nm;
- }
- public String getNature() {
- return nature;
- }
- public void setNature(String nature) {
- this.nature = nature;
- }
- public String getGovernment() {
- return government;
- }
- public void setGovernment(String government) {
- this.government = government;
- }
- 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;
- }
- @Override
- public String toString() {
- return "BisInspKeyRegSecUnit [" + "id=" + id + ", secId=" + secId + ", nm=" + nm + ", nature=" + nature + ", government=" + government + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + "]";
- }
- }
|