| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * AttMampuInfoParam
- *
- * @author lhc
- * @date 2019-4-20
- */
- public class AttMampuInfoParam extends PageParam implements Serializable {
- // 名称
- @ApiParam(name = "名称")
- @ApiModelProperty(value = "名称", name = "nm")
- private String nm;
- // 父ID
- @ApiParam(name = "父ID")
- @ApiModelProperty(value = "父ID", name = "pid")
- private String pid;
- // 级别
- @ApiParam(name = "级别")
- @ApiModelProperty(value = "级别", name = "lev")
- private String lev;
- // 登记表ID
- @ApiParam(name = "登记表ID")
- @ApiModelProperty(value = "登记表ID", name = "regId")
- private String regId;
- private String ord;
- private String persId;
- private String intm;
- private String uptm;
- public String getOrd() {
- return ord;
- }
- public void setOrd(String ord) {
- this.ord = ord;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public String getIntm() {
- return intm;
- }
- public void setIntm(String intm) {
- this.intm = intm;
- }
- public String getUptm() {
- return uptm;
- }
- public void setUptm(String uptm) {
- this.uptm = uptm;
- }
- public AttMampuInfoParam() {
- }
- public String getNm() {
- return nm;
- }
- public void setNm(String nm) {
- this.nm = nm;
- }
- public String getPid() {
- return pid;
- }
- public void setPid(String pid) {
- this.pid = pid;
- }
- public String getLev() {
- return lev;
- }
- public void setLev(String lev) {
- this.lev = lev;
- }
- public String getRegId() {
- return regId;
- }
- public void setRegId(String regId) {
- this.regId = regId;
- }
- }
|