using LJLib.DAL.SQL;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace JLHHJSvr.Com.Model
{
[PK(new[] { "mtrlid" })]
public sealed class u_mtrl_price
{
///
/// 物料id
///
public int? mtrlid { get; set; }
///
/// 物料类别id
///
public int? mtrltype { get; set; }
///
/// 物料名称
///
public string name { get; set; }
///
/// 单价单位
///
public string priceunit { get; set; }
///
/// 收缩率
///
public decimal? shrinkage { get; set; }
///
/// 克重
///
public decimal? gram_weight { get; set; }
///
/// 厚度
///
public decimal? cloth_width { get; set; }
///
/// 固定厚度
///
public int? if_inputqty { get; set; }
///
/// 单价按面积
///
public int? if_areaprice { get; set; }
///
/// 建立时间
///
public DateTime? createtime { get; set; }
///
/// 建立人
///
public string createby { get; set; }
///
/// 厚度
///
public decimal? thickness { get; set; }
///
/// 备注
///
public string dscrp { get; set; }
///
/// ERP物料id
///
public int? erp_mtrlid { get; set; }
///
/// 附件数
///
public int? fjcnt { get; set; }
///
/// 有效
///
public int? isuse { get; set; }
///
/// 默认类别
///
public string handtype { get; set; }
///
/// 有效时间
///
public DateTime? lastdate { get; set; }
///
/// ERP英文名称
///
public string erp_mtrlengname { get; set; }
public string erp_mtrlcode { get; set; }
public string erp_mtrlname { get; set; }
public string erp_mtrlmode { get; set; }
public string erp_unit { get; set; }
public List mxlist { get; set; }
public decimal? price { get; set; }
public string price_formula { get; set; }
public string qty_formula { get; set; }
public int? pricelistid { get; set; }
}
}