using System;
using System.Collections.Generic;
using SqlSugar;
using OfficeOpenXml.Attributes;
using Newtonsoft.Json;
namespace ARW.Model.Models.Business.GoodsManager.GoodsSpecs.Specs
{
///
/// 商品规格组,数据实体对象
///
/// @author lwh
/// @date 2023-06-19
///
[SugarTable("tb_spec")]
public class Spec : BusinessBase
{
///
/// 描述 :
/// 空值 : false
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "spec_id")]
public int SpecId { get; set; }
///
/// 描述 :规格值名称
/// 空值 : false
///
[SugarColumn(ColumnName = "spec_name")]
public string SpecName { get; set; }
}
}