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; }
///
/// 禁用
///
public byte? inuse { get; set; }
///
/// 管理费用点
///
public decimal? managerate { get; set; }
///
/// 公司利润率
///
public decimal? com_profitrate { get; set; }
///
/// 散单利润率浮动数
///
public decimal? dannum1_rate { get; set; }
///
/// 标准利润率浮动数
///
public decimal? dannum2_rate { get; set; }
///
/// 大单利润率浮动数
///
public decimal? dannum3_rate { get; set; }
///
/// 小单利润率浮动数
///
public decimal? dannum4_rate { get; set; }
}
}