mps-platform/cds-fontend-2025.V1/src/typings/api/mps.private-ebank-new.api.d.ts

73 lines
1.8 KiB
TypeScript
Raw Normal View History

2025-07-14 10:47:35 +08:00
/**
* namespace Mps
*
* backend api module: "Mps"
*/
namespace Mps {
/** private ebank new */
type PrivateEbankNew = Common.CommonRecord<{
/** 数据编号 */
dataId: CommonType.IdType;
2025-07-14 10:47:35 +08:00
/** 营销人员营销号 */
userId: CommonType.IdType;
2025-07-14 10:47:35 +08:00
/** 客户身份证号 */
custId: CommonType.IdType;
2025-07-14 10:47:35 +08:00
/** 客户姓名 */
custName: string;
2025-07-14 10:47:35 +08:00
/** 客户账号/卡号 */
custAcctNo: string;
2025-07-14 10:47:35 +08:00
/** 客户联系电话 */
custPhoneNo: string;
2025-07-14 10:47:35 +08:00
/** 核对标志 */
checkFlag: string;
2025-07-14 10:47:35 +08:00
/** 核对时间 */
checkTime: string;
2025-07-14 10:47:35 +08:00
/** 核对人员 */
checkUser: string;
2025-07-14 10:47:35 +08:00
/** 核对方式 */
checkType: string;
2025-07-14 10:47:35 +08:00
/** 核对结果 */
checkMsg: string;
2025-07-14 10:47:35 +08:00
/** 租户编号 */
tenantId: CommonType.IdType;
2025-07-14 10:47:35 +08:00
/** 删除标志 */
delFlag: string;
2025-07-14 10:47:35 +08:00
}>;
/** 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'
2025-07-14 10:47:35 +08:00
| 'userId'
| 'custId'
| 'custName'
| 'custAcctNo'
| 'custPhoneNo'
| 'checkFlag'
| 'checkTime'
| 'checkUser'
| 'checkType'
| 'checkMsg'
>
>;
/** private ebank new list */
type PrivateEbankNewList = Api.Common.PaginatingQueryRecord<PrivateEbankNew>;
}