package cn.com.goldenwater.dcproj.model; import cn.com.goldenwater.core.model.BaseBean; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; /** * @author lhc * @date 2019/11/18 15:34 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class BisInspOffLineObj extends BaseBean implements Serializable { @ApiModelProperty(value = "对象ID", name = "id") private String id; @ApiModelProperty(value = "对象类型", name = "objType") private String objType; @ApiModelProperty(value = "基本信息", name = "base") private String base; @ApiModelProperty(value = "登记信息", name = "register") private String register; @ApiModelProperty(value = "问题信息", name = "problem") private String problem; @ApiModelProperty(value = "行政区代码", name = "adCode") private String adCode; @ApiModelProperty(value = "行政区名称", name = "adName") private String adName; @ApiModelProperty(value = "中心点经纬度", name = "centerX") private String centerX; @ApiModelProperty(value = "中心点经纬度", name = "centerY") private String centerY; @ApiModelProperty(value = "中心点经纬度", name = "gdX") private String gdX; @ApiModelProperty(value = "中心点经纬度", name = "gdY") private String gdY; @ApiModelProperty(value = "位置", name = "location") private String location; @ApiModelProperty(value = "名称", name = "nm") private String nm; @ApiModelProperty(value = "代码", name = "code") private String code; @ApiModelProperty(value = "组ID", name = "groupId") private String groupId; @ApiModelProperty(value = "操作人信息", name = "persId") private String persId; @ApiModelProperty(value = "签名信息及近期面貌信息", name = "sign") private String sign; @ApiModelProperty(value = "填报表操作", name = "bisInspOffLineRsvr") private BisInspOffLineRsvr bisInspOffLineRsvr; public BisInspOffLineObj() { } public BisInspOffLineRsvr getBisInspOffLineRsvr() { return bisInspOffLineRsvr; } public void setBisInspOffLineRsvr(BisInspOffLineRsvr bisInspOffLineRsvr) { this.bisInspOffLineRsvr = bisInspOffLineRsvr; } public String getCenterY() { return centerY; } public void setCenterY(String centerY) { this.centerY = centerY; } public String getSign() { return sign; } public void setSign(String sign) { this.sign = sign; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getObjType() { return objType; } public void setObjType(String objType) { this.objType = objType; } public String getBase() { return base; } public void setBase(String base) { this.base = base; } public String getRegister() { return register; } public void setRegister(String register) { this.register = register; } public String getProblem() { return problem; } public void setProblem(String problem) { this.problem = problem; } public String getAdCode() { return adCode; } public void setAdCode(String adCode) { this.adCode = adCode; } public String getAdName() { return adName; } public void setAdName(String adName) { this.adName = adName; } public String getCenterX() { return centerX; } public void setCenterX(String centerX) { this.centerX = centerX; } public String getGdX() { return gdX; } public void setGdX(String gdX) { this.gdX = gdX; } public String getGdY() { return gdY; } public void setGdY(String gdY) { this.gdY = gdY; } public String getLocation() { return location; } public void setLocation(String location) { this.location = location; } public String getNm() { return nm; } public void setNm(String nm) { this.nm = nm; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } @Override public String getGroupId() { return groupId; } @Override public void setGroupId(String groupId) { this.groupId = groupId; } public String getPersId() { return persId; } public void setPersId(String persId) { this.persId = persId; } }