2025-07-16 10:31:51 +08:00
|
|
|
|
/**
|
2025-07-23 13:21:04 +08:00
|
|
|
|
* Namespace Api
|
2025-07-16 10:31:51 +08:00
|
|
|
|
*
|
2025-07-23 13:21:04 +08:00
|
|
|
|
* All backend api type
|
2025-07-16 10:31:51 +08:00
|
|
|
|
*/
|
2025-07-23 13:21:04 +08:00
|
|
|
|
declare namespace Api {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* namespace Mps
|
|
|
|
|
*
|
|
|
|
|
* backend api module: "Mps"
|
|
|
|
|
*/
|
|
|
|
|
namespace Mps {
|
2025-07-16 10:31:51 +08:00
|
|
|
|
/** private test3 */
|
|
|
|
|
type PrivateTest3 = Common.CommonRecord<{
|
2025-07-23 13:21:04 +08:00
|
|
|
|
/** 主键 */
|
|
|
|
|
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;
|
2025-07-16 10:31:51 +08:00
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
/** private test3 search params */
|
|
|
|
|
type PrivateTest3SearchParams = CommonType.RecordNullable<
|
|
|
|
|
Pick<
|
|
|
|
|
Api.Mps.PrivateTest3,
|
|
|
|
|
| 'userId'
|
|
|
|
|
| 'custId'
|
|
|
|
|
| 'custName'
|
|
|
|
|
| 'custAcctNo'
|
|
|
|
|
| 'custPhoneNo'
|
|
|
|
|
| 'checkFlag'
|
|
|
|
|
| 'checkTime'
|
|
|
|
|
| 'checkUser'
|
|
|
|
|
| 'checkType'
|
|
|
|
|
| 'checkMsg'
|
|
|
|
|
> &
|
2025-07-23 13:21:04 +08:00
|
|
|
|
Api.Common.CommonSearchParams
|
2025-07-16 10:31:51 +08:00
|
|
|
|
>;
|
|
|
|
|
|
|
|
|
|
/** 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>;
|
2025-07-23 13:21:04 +08:00
|
|
|
|
}
|
2025-07-16 10:31:51 +08:00
|
|
|
|
}
|