using Npoi.Mapper.Attributes; using System; namespace JiaZhiQuan.Common.Models.MallGoodsModel { /// /// 商品表specJson字段对应json /// public class SpecJsonModel { /// /// 属性id /// public int specId { get; set; } /// /// 属性名字 /// public string specName { get; set; } /// /// 属性值id /// public int specValueId { get; set; } /// /// 属性值名称 /// public string specValueName { get; set; } /// /// 属性值图片 /// public string specValueImg { get; set; } } /// /// 属性导入excel对象 /// public class SpecImportExcel { [Ignore] [Column("一级类目")] public string catName1 { get; set; } [Column("二级类目")] public string catName2 { get; set; } [Column("品牌")] public string brand { get; set; } [Column("IP")] public string IP { get; set; } [Column("系列")] public string series { get; set; } } }