| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- 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;
- /**
- * AttOrgDepParam
- *
- * @author lune
- * @date 2019-2-19
- */
- public class AttOrgDepParam extends PageParam implements Serializable {
- private String guid;
- private String depName;
- private String orgGuid;
- private String legPers;
- private String legPersTel;
- private String safeManaPers;
- private String safeManaPersTel;
- private String ifRespSpm;
- private String ifRespAed;
- private String ifRespFsm;
- private String note;
- private Date ts;
- private String recPers;
- public AttOrgDepParam() {
- }
- public String getGuid() {
- return guid;
- }
- public void setGuid(String guid) {
- this.guid = guid;
- }
- public String getDepName() {
- return depName;
- }
- public void setDepName(String depName) {
- this.depName = depName;
- }
- public String getOrgGuid() {
- return orgGuid;
- }
- public void setOrgGuid(String orgGuid) {
- this.orgGuid = orgGuid;
- }
- public String getLegPers() {
- return legPers;
- }
- public void setLegPers(String legPers) {
- this.legPers = legPers;
- }
- public String getLegPersTel() {
- return legPersTel;
- }
- public void setLegPersTel(String legPersTel) {
- this.legPersTel = legPersTel;
- }
- public String getSafeManaPers() {
- return safeManaPers;
- }
- public void setSafeManaPers(String safeManaPers) {
- this.safeManaPers = safeManaPers;
- }
- public String getSafeManaPersTel() {
- return safeManaPersTel;
- }
- public void setSafeManaPersTel(String safeManaPersTel) {
- this.safeManaPersTel = safeManaPersTel;
- }
- public String getIfRespSpm() {
- return ifRespSpm;
- }
- public void setIfRespSpm(String ifRespSpm) {
- this.ifRespSpm = ifRespSpm;
- }
- public String getIfRespAed() {
- return ifRespAed;
- }
- public void setIfRespAed(String ifRespAed) {
- this.ifRespAed = ifRespAed;
- }
- public String getIfRespFsm() {
- return ifRespFsm;
- }
- public void setIfRespFsm(String ifRespFsm) {
- this.ifRespFsm = ifRespFsm;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public Date getTs() {
- return ts;
- }
- public void setTs(Date ts) {
- this.ts = ts;
- }
- public String getRecPers() {
- return recPers;
- }
- public void setRecPers(String recPers) {
- this.recPers = recPers;
- }
- }
|