建立电销业务数据记录类。
This commit is contained in:
parent
fb6e431c8f
commit
10c07f669c
|
@ -0,0 +1,36 @@
|
||||||
|
package com.cpic.telsale;
|
||||||
|
|
||||||
|
import java.lang.String;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public class TelsalePolicyRecord
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @Description: 构造函数
|
||||||
|
* @Param: policyNo
|
||||||
|
* @Param: operatorCode
|
||||||
|
* @return:
|
||||||
|
* @Author: 王炜
|
||||||
|
* @Date: 2021/6/21 */
|
||||||
|
public TelsalePolicyRecord( String policyNo, String operatorCode )
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
private String policyNo;
|
||||||
|
//经办人
|
||||||
|
private String operatorCode;
|
||||||
|
private String operatorName;
|
||||||
|
private String operatorSectionOfficeCode;
|
||||||
|
private String operatorSectionOfficeName;
|
||||||
|
private String operatorSectionDepartmentCode;
|
||||||
|
private String operatorSectionDepartmentName;
|
||||||
|
//录入人
|
||||||
|
private String entryStaffCode;
|
||||||
|
private String entryStaffName;
|
||||||
|
private String entryStaffSectionOfficeCode;
|
||||||
|
private String entryStaffSectionOfficeName;
|
||||||
|
private String entryStaffSectionDepartmentCode;
|
||||||
|
private String entryStaffSectionDepartmentName;
|
||||||
|
}
|
Loading…
Reference in New Issue