完善客户信息编辑
This commit is contained in:
@@ -336,3 +336,25 @@ export interface OutputTongyishuSignInfo {
|
||||
*/
|
||||
export type TongyishuSignSubmitResponse = CommonActionResult<OutputTongyishuSignInfo>;
|
||||
|
||||
/**
|
||||
* 客户信息编辑入参
|
||||
*/
|
||||
export interface InputCustomerDetailEdit {
|
||||
/** 婚姻状况(10-未婚 20-已婚) */
|
||||
marital_status: number;
|
||||
/** 联系电话 */
|
||||
phone: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* 客户信息编辑出参
|
||||
*/
|
||||
export interface OutputCustomerDetailEdit {
|
||||
// 空对象,无属性
|
||||
}
|
||||
|
||||
/**
|
||||
* 客户信息编辑响应
|
||||
*/
|
||||
export type CustomerDetailEditResponse = CommonActionResult<OutputCustomerDetailEdit>;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user