123456789101112131415161718192021222324 |
- class SimpleInfoItem {
- SimpleInfoItem({
- required this.itemCode,
- this.name,
- this.role,
- this.des,
- this.image,
- });
- ///名称
- String? name = '';
- ///类型
- String? role = '';
- ///描述
- List? des = [];
- ///图像
- String? image = '';
- ///编码(作为唯一标识)
- String itemCode;
- }
|