9 changed files with 290 additions and 7 deletions
@ -0,0 +1,47 @@ |
|||||
|
/** |
||||
|
* Copyright 2018 人人开源 https://www.renren.io
|
||||
|
* <p> |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* <p> |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* <p> |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
*/ |
||||
|
|
||||
|
package com.elink.esua.epdc.dto.item.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.math.BigDecimal; |
||||
|
|
||||
|
/** |
||||
|
* 推荐12345热线数据 |
||||
|
* |
||||
|
* @author elink elink@elink-cn.com |
||||
|
* @since v1.0.0 2024-06-26 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ItemBackHotlineDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* ID |
||||
|
*/ |
||||
|
private String id; |
||||
|
|
||||
|
/** |
||||
|
* 推荐原因 |
||||
|
*/ |
||||
|
private String cznr; |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,154 @@ |
|||||
|
/** |
||||
|
* Copyright 2018 人人开源 https://www.renren.io
|
||||
|
* <p> |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* <p> |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* <p> |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
*/ |
||||
|
|
||||
|
package com.elink.esua.epdc.dto.item.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* 回退12345热线数据 |
||||
|
* |
||||
|
* @author elink elink@elink-cn.com |
||||
|
* @since v1.0.0 2024-06-26 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class RollBackHotLineFromDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* czsj : 2024-08-01 18:23:00 |
||||
|
* cznr : 退件原因 |
||||
|
* czr : {"lxdh":"联系电话","xm":"人员姓名","ssbmbm":"所属部门编码","id":"e2d096bd7e62462ebcaasfbdddddd","ssjgbm":"所属机构编码","ssjg":"所属机构","ssbm":"所属部门"} |
||||
|
* sqid : e2d096bd7e62462ebcaasfb89bdeff737 |
||||
|
*/ |
||||
|
private Date czsj; |
||||
|
private String cznr; |
||||
|
private CzrEntity czr; |
||||
|
private String sqid; |
||||
|
|
||||
|
public void setCzsj(Date czsj) { |
||||
|
this.czsj = czsj; |
||||
|
} |
||||
|
|
||||
|
public void setCznr(String cznr) { |
||||
|
this.cznr = cznr; |
||||
|
} |
||||
|
|
||||
|
public void setCzr(CzrEntity czr) { |
||||
|
this.czr = czr; |
||||
|
} |
||||
|
|
||||
|
public void setSqid(String sqid) { |
||||
|
this.sqid = sqid; |
||||
|
} |
||||
|
|
||||
|
public Date getCzsj() { |
||||
|
return czsj; |
||||
|
} |
||||
|
|
||||
|
public String getCznr() { |
||||
|
return cznr; |
||||
|
} |
||||
|
|
||||
|
public CzrEntity getCzr() { |
||||
|
return czr; |
||||
|
} |
||||
|
|
||||
|
public String getSqid() { |
||||
|
return sqid; |
||||
|
} |
||||
|
|
||||
|
public static class CzrEntity { |
||||
|
/** |
||||
|
* lxdh : 联系电话 |
||||
|
* xm : 人员姓名 |
||||
|
* ssbmbm : 所属部门编码 |
||||
|
* id : e2d096bd7e62462ebcaasfbdddddd |
||||
|
* ssjgbm : 所属机构编码 |
||||
|
* ssjg : 所属机构 |
||||
|
* ssbm : 所属部门 |
||||
|
*/ |
||||
|
private String lxdh; |
||||
|
private String xm; |
||||
|
private String ssbmbm; |
||||
|
private String id; |
||||
|
private String ssjgbm; |
||||
|
private String ssjg; |
||||
|
private String ssbm; |
||||
|
|
||||
|
public void setLxdh(String lxdh) { |
||||
|
this.lxdh = lxdh; |
||||
|
} |
||||
|
|
||||
|
public void setXm(String xm) { |
||||
|
this.xm = xm; |
||||
|
} |
||||
|
|
||||
|
public void setSsbmbm(String ssbmbm) { |
||||
|
this.ssbmbm = ssbmbm; |
||||
|
} |
||||
|
|
||||
|
public void setId(String id) { |
||||
|
this.id = id; |
||||
|
} |
||||
|
|
||||
|
public void setSsjgbm(String ssjgbm) { |
||||
|
this.ssjgbm = ssjgbm; |
||||
|
} |
||||
|
|
||||
|
public void setSsjg(String ssjg) { |
||||
|
this.ssjg = ssjg; |
||||
|
} |
||||
|
|
||||
|
public void setSsbm(String ssbm) { |
||||
|
this.ssbm = ssbm; |
||||
|
} |
||||
|
|
||||
|
public String getLxdh() { |
||||
|
return lxdh; |
||||
|
} |
||||
|
|
||||
|
public String getXm() { |
||||
|
return xm; |
||||
|
} |
||||
|
|
||||
|
public String getSsbmbm() { |
||||
|
return ssbmbm; |
||||
|
} |
||||
|
|
||||
|
public String getId() { |
||||
|
return id; |
||||
|
} |
||||
|
|
||||
|
public String getSsjgbm() { |
||||
|
return ssjgbm; |
||||
|
} |
||||
|
|
||||
|
public String getSsjg() { |
||||
|
return ssjg; |
||||
|
} |
||||
|
|
||||
|
public String getSsbm() { |
||||
|
return ssbm; |
||||
|
} |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue