using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace JiepeiWMS.Model.Models
{
///
///商品规格表
///
[SugarTable("WMProductSpec", "Jiepei_WMS")]
public class WMProductSpec
{
public WMProductSpec()
{
}
///
/// 商品规格表主键Id
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 添加人id
///
public int AdminId { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
///
/// 备注
///
public string Remark { get; set; }
///
/// 主体id
///
public int SysOrgId { get; set; }
///
/// 创建人
///
[SugarColumn(IsIgnore = true)]
public string AdminName { get; set; }
}
}