You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
703 B
24 lines
703 B
import 'package:flutter/cupertino.dart'; |
|
import 'package:huixiang/business_system/goods/add_goods/data/product_sku_attr.dart'; |
|
|
|
@Deprecated("更换为:ProductSkuAttr") |
|
class SetSpecsList { |
|
TextEditingController _specsNameController; |
|
List<ProductSkuAttrValue> _specsValues = []; |
|
String _specsCode = ""; |
|
TextEditingController get specsNameController => _specsNameController; |
|
|
|
List<ProductSkuAttrValue> get specsValues => _specsValues; |
|
String get specsCode => _specsCode; |
|
|
|
set specsValues(List<ProductSkuAttrValue> value) { |
|
_specsValues = value; |
|
} |
|
set specsCode(String value) { |
|
_specsCode = value; |
|
} |
|
|
|
SetSpecsList(){ |
|
_specsNameController = TextEditingController(); |
|
} |
|
} |