| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import io.swagger.annotations.ApiParam;
- import org.springframework.format.annotation.DateTimeFormat;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * BisInspSelAreaParam
- *
- * @author litf
- * @date 2019-3-6
- */
- public class BisInspSelAreaParam extends PageParam implements Serializable {
- @ApiParam(name = "areaId", value = "主键ID")
- private String areaId;
- @ApiParam(name = "id", value = "节点id")
- private String id;
- @ApiParam(name = "adCode", value = "行政区划代码")
- private String adCode;
- @ApiParam(name = "adCodes", value = "多个行政区划代码")
- private String adCodes;
- @ApiParam(name = "adName", value = "行政区划名称")
- private String adName;
- @ApiParam(name = "objName", value = "督查名称")
- private String objName;
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
- private Date idtm;
- public BisInspSelAreaParam() {
- }
- public String getAdCodes() {
- return adCodes;
- }
- public void setAdCodes(String adCodes) {
- this.adCodes = adCodes;
- }
- public String getAreaId() {
- return areaId;
- }
- public void setAreaId(String areaId) {
- this.areaId = areaId;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- 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 Date getIdtm() {
- return idtm;
- }
- public void setIdtm(Date idtm) {
- this.idtm = idtm;
- }
- public String getObjName() {
- return objName;
- }
- public void setObjName(String objName) {
- this.objName = objName;
- }
- }
|