| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import io.swagger.annotations.ApiParam;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * BisInspAllObjParam
- *
- * @author lune
- * @date 2019-2-23
- */
- public class BisInspAllObjParam extends PageParam implements Serializable {
- private String code;
- private String id;
- private String nm;
- private String ptype;
- private Double lgtd;
- private Double lttd;
- private String objId;
- private Double lgtdpc;
- private Double lttdpc;
- private String adCode;
- @ApiModelProperty("登记表行政区划")
- private String objAdCode;
- /**
- * 是否省属 1是 2否
- */
- @ApiParam(
- name = "provincial",
- value = "是否省属:1是2否"
- )
- private String provincial;
- public String getObjAdCode() {
- return objAdCode;
- }
- public void setObjAdCode(String objAdCode) {
- this.objAdCode = objAdCode;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- 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;
- }
- public BisInspAllObjParam() {
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- 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 getPtype() {
- return ptype;
- }
- public void setPtype(String ptype) {
- this.ptype = ptype;
- }
- 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 String getObjId() {
- return objId;
- }
- public void setObjId(String objId) {
- this.objId = objId;
- }
- public String getProvincial() {
- return provincial;
- }
- public void setProvincial(String provincial) {
- this.provincial = provincial;
- }
- }
|