22
schangxiang@126.com
昨天 8f6ac4a1efa1c3dc94ac260b9b14b578bd61af62
1
2
3
4
5
6
7
8
9
10
11
export interface EnumListItemType {
  name?: string
  value?: string | number
  description?: string
  id?: string
}
 
export interface CommonEnumListInfoType {
  list?: EnumListItemType[]
  desc?: string
}