simple_Info.dart 324 B

123456789101112131415161718192021222324
  1. class SimpleInfoItem {
  2. SimpleInfoItem({
  3. required this.itemCode,
  4. this.name,
  5. this.role,
  6. this.des,
  7. this.image,
  8. });
  9. ///名称
  10. String? name = '';
  11. ///类型
  12. String? role = '';
  13. ///描述
  14. List? des = [];
  15. ///图像
  16. String? image = '';
  17. ///编码(作为唯一标识)
  18. String itemCode;
  19. }