| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- 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;
- public class GetVillPageByNodeIdParam extends PageParam implements Serializable {
- @ApiModelProperty(value = "节点id,必填", notes = "节点id", required = true)
- private String nodeId;
- // @ApiModelProperty(value = "登记表id",notes = "engId")
- // private String engId;
- @ApiModelProperty(value = "行政区名称", notes = "行政区名称")
- private String adNm;
- @ApiModelProperty(value = "检查单位id", notes = "检查单位")
- private String chkComId;
- @ApiModelProperty(value = "所在组id", notes = "所在组")
- private String groupId;
- @ApiModelProperty(value = "开始时间yyyy-MM-dd", notes = "开始时间")
- private String startDate;
- @ApiModelProperty(value = "结束时间yyyy-MM-dd", notes = "结束时间")
- private String endDate;
- public String getNodeId() {
- return nodeId;
- }
- public void setNodeId(String nodeId) {
- this.nodeId = nodeId;
- }
- // public String getEngId() {
- // return engId;
- // }
- //
- // public void setEngId(String engId) {
- // this.engId = engId;
- // }
- public String getAdNm() {
- return adNm;
- }
- public void setAdNm(String adNm) {
- this.adNm = adNm;
- }
- public String getChkComId() {
- return chkComId;
- }
- public void setChkComId(String chkComId) {
- this.chkComId = chkComId;
- }
- public String getGroupId() {
- return groupId;
- }
- public void setGroupId(String groupId) {
- this.groupId = groupId;
- }
- public String getStartDate() {
- return startDate;
- }
- public void setStartDate(String startDate) {
- this.startDate = startDate;
- }
- public String getEndDate() {
- return endDate;
- }
- public void setEndDate(String endDate) {
- this.endDate = endDate;
- }
- }
|