using LJLib.DAL.SQL; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace JLHHJSvr.Com.Model { [PK(new[] { "deptid" })] public sealed class u_dept { /// /// 部门id /// public int deptid { get; set; } /// /// 部门名称 /// public string deptname { get; set; } /// /// 利润率 /// public decimal profitrate { get; set; } /// /// 价格表id /// public int pricelistid { get; set; } /// /// 弹簧分类id /// public int springtypeid { get; set; } /// /// 审核 /// public byte flag { get; set; } /// /// 审核人 /// public string auditemp { get; set; } /// /// 审核时间 /// public DateTime? auditdate { get; set; } /// /// 修改人 /// public string modemp { get; set; } /// /// 修改时间 /// public DateTime? moddate { get; set; } /// /// 创建时间 /// public DateTime? createtime { get; set; } /// /// 汇率 /// public decimal? moneyrate { get; set; } /// /// manage_amt /// public decimal? manage_amt { get; set; } /// /// 折扣率 /// public decimal? discount { get; set; } /// /// 是否自动读取汇率 /// public byte? if_rate_auto { get; set; } /// /// 默认物料类别 /// public int? mtrltype { get; set; } } }