完善客户信息编辑

This commit is contained in:
xianyi
2025-12-15 10:48:41 +08:00
parent 6ccf5fb2f7
commit 91a12b848e
3 changed files with 184 additions and 15 deletions

View File

@@ -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>;