/** * namespace Mps * * backend api module: "Mps" */ namespace Mps { /** private ebank new */ type PrivateEbankNew = Common.CommonRecord<{ /** 数据编号 */ dataId: CommonType.IdType; /** 营销人员营销号 */ userId: CommonType.IdType; /** 客户身份证号 */ custId: CommonType.IdType; /** 客户姓名 */ custName: string; /** 客户账号/卡号 */ custAcctNo: string; /** 客户联系电话 */ custPhoneNo: string; /** 核对标志 */ checkFlag: string; /** 核对时间 */ checkTime: string; /** 核对人员 */ checkUser: string; /** 核对方式 */ checkType: string; /** 核对结果 */ checkMsg: string; /** 租户编号 */ tenantId: CommonType.IdType; /** 删除标志 */ delFlag: string; }>; /** private ebank new search params */ type PrivateEbankNewSearchParams = CommonType.RecordNullable< Pick< Api.Mps.PrivateEbankNew, | 'userId' | 'custId' | 'custName' | 'checkFlag' | 'checkType' | 'createTime' > & Api.Common.CommonSearchParams >; /** private ebank new operate params */ type PrivateEbankNewOperateParams = CommonType.RecordNullable< Pick< Api.Mps.PrivateEbankNew, | 'dataId' | 'operatorId' | 'userId' | 'custId' | 'custName' | 'custAcctNo' | 'custPhoneNo' | 'checkFlag' | 'checkTime' | 'checkUser' | 'checkType' | 'checkMsg' > >; /** private ebank new list */ type PrivateEbankNewList = Api.Common.PaginatingQueryRecord; }