84 lines
2.0 KiB
TypeScript
84 lines
2.0 KiB
TypeScript
/**
|
||
* 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>;
|
||
}
|
||
}
|