mps-platform/cds-fontend-2025.V1/src/typings/api/mps.private-test3.api.d.ts
2025-07-23 13:21:04 +08:00

84 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* Namespace Api
*
* All backend api type
*/
declare namespace Api {
/**
* namespace Mps
*
* backend api module: "Mps"
*/
namespace Mps {
/** private test3 */
type PrivateTest3 = Common.CommonRecord<{
/** 主键 */
dataId: CommonType.IdType;
/** 营销人员营销号 */
userId: CommonType.IdType;
/** 客户身份证号 */
custId: CommonType.IdType;
/** 客户姓名 */
custName: string;
/** 客户账号/卡号 */
custAcctNo: string;
/** 客户联系电话 */
custPhoneNo: string;
/** 核对标志0未核对 1核对通过 9核对失败 */
checkFlag: string;
/** 核对时间 */
checkTime: string;
/** 核对人员(人工核对时) */
checkUser: string;
/** 核对方式0系统 1人工 2其他1 3其他2 4其他3 */
checkType: string;
/** 核对结果 */
checkMsg: string;
/** 租户编号 */
tenantId: CommonType.IdType;
/** 删除标志0代表存在 1代表删除 */
delFlag: string;
}>;
/** private test3 search params */
type PrivateTest3SearchParams = CommonType.RecordNullable<
Pick<
Api.Mps.PrivateTest3,
| 'userId'
| 'custId'
| 'custName'
| 'custAcctNo'
| 'custPhoneNo'
| 'checkFlag'
| 'checkTime'
| 'checkUser'
| 'checkType'
| 'checkMsg'
> &
Api.Common.CommonSearchParams
>;
/** private test3 operate params */
type PrivateTest3OperateParams = CommonType.RecordNullable<
Pick<
Api.Mps.PrivateTest3,
| 'dataId'
| 'userId'
| 'custId'
| 'custName'
| 'custAcctNo'
| 'custPhoneNo'
| 'checkFlag'
| 'checkTime'
| 'checkUser'
| 'checkType'
| 'checkMsg'
>
>;
/** private test3 list */
type PrivateTest3List = Api.Common.PaginatingQueryRecord<PrivateTest3>;
}
}