first version
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
/** 客户等级 */
|
||||
export default interface ICustomerLevel {
|
||||
id?: number;
|
||||
/** 等级名称 */
|
||||
name?: string;
|
||||
sort?: number;
|
||||
status?: number;
|
||||
remark?: string;
|
||||
created_at?: string;
|
||||
updated_at?: string;
|
||||
}
|
||||
|
||||
export const CUSTOMER_LEVEL_STATUS_MAP: Record<number, { text: string; color: string }> = {
|
||||
0: { text: '停用', color: 'error' },
|
||||
1: { text: '正常', color: 'success' },
|
||||
};
|
||||
Reference in New Issue
Block a user