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.
 
 
 
 
 
 

25 lines
585 B

import 'dart:convert';
import 'package:json_annotation/json_annotation.dart';
part 'sku_attr_list.g.dart';
@JsonSerializable(explicitToJson: true)
class SkuAttrList {
String? attrValueId = '';
int? isDelete = 0;
String? updateUser = '';
String? updateTime = '';
String? attrId = '';
String? createTime = '';
dynamic sortOrder;
String? createUser = '';
String? id = '';
String? skuId = '';
SkuAttrList();
factory SkuAttrList.fromJson(Map<String, dynamic> json) => _$SkuAttrListFromJson(json);
Map<String, dynamic> toJson() => _$SkuAttrListToJson(this);
}