using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ICSSoft.ERPWMS.Entity
{
public class InventoryEntity
{
///
/// 物料编码
///
public string cInvCode { get; set; }
///
/// 物料代码
///
public string cInvAddCode { get; set; }
///
/// 物料名称
///
public string cInvName { get; set; }
///
/// 规格型号
///
public string cInvStd { get; set; }
///
/// 主计量单位
///
public string cComUnitCode { get; set; }
///
/// 辅计量单位
///
public string cAssComUnitCode { get; set; }
///
/// 助记码
///
public string cInvMnemCode { get; set; }
///
/// 税率
///
public float iTaxRate { get; set; }
///
/// 启用日期
///
public DateTime? dSDate { get; set; }
///
/// 停用日期
///
public DateTime? dEDate { get; set; }
///
/// 通用名称
///
public string cCurrencyName { get; set; }
///
/// 物料分类名称
///
public string cInvCName { get; set; }
///
/// 物料英文名称
///
public string cEnglishName { get; set; }
///
/// 采购员
///
public string cPurPersonCode { get; set; }
///
/// 是否销售
///
public bool bSale { get; set; }
///
/// 是否采购
///
public bool bPurchase { get; set; }
///
/// 是否自制
///
public bool bSelf { get; set; }
///
/// 修改日期
///
public string dModifyDate { get; set; }
///
/// 计划员
///
public string cInvPersonCode { get; set; }
}
}