// 列表查询条件 export interface IAdviceQuery { adviceNo: string // 投诉编号 customerName: string // 公司名称 customerNo: string // 客户编号 startTime: string // 投诉开始时间 endTime: string // 投诉结束时间 offset: number limit: number } // 投诉建议 export interface IAdvice { id: string // 主键id(列表、更新接口参数) adviceNo: string // 投诉编号 adviceClass: string // 投诉类型 adviceClassName?: string // 投诉类型 adviceType: string // 投诉类别 adviceTypeName?: string // 投诉类别 advicePerson: string // 投诉人-名称 adviceTime: string // 投诉时间 personPhone: string // 投诉人联系方式 customerName: string // 公司名称 customerNo: string // 客户编号 customerId: string // 客户id content: string // 投诉内容 handleStatus: string // 处置状态 handleMessage: string // 处置意见 grade?: string // 履约评级 gradeName?: string // 履约评级 companySize?: string // 公司规模 companySizeName?: string // 公司规模 businessSize?: string // 业务规模 businessSizeName?: string // 业务规模 evaluation?: string // 整体评价 evaluationName?: string // 整体评价 createTime?: string // 创建时间 createUser?: string // 创建人 } // 公司简易 export interface SimpleCompany { customerName: string // 公司名称 customerNo: string // 客户编号 customerId: string // 客户id gradeName: string // 履约评级 companySizeName: string // 公司规模 businessSizeName: string // 业务规模 evaluationName: string // 整体评价 }