| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- using System;
- using System.Text;
- namespace Pur.Entity.ck
- {
- [Serializable]
- public class CkStatistics:MatAttr
- {
- /** 主键 */
- private string id;
- public string Id
- {
- get { return id; }
- set { id = value; }
- }
- /** 会计期 */
- private string accountPeriod;
- public string AccountPeriod
- {
- get { return accountPeriod; }
- set { accountPeriod = value; }
- }
- /** 物料编码 */
- private string itemCode;
- public string ItemCode
- {
- get { return itemCode; }
- set { itemCode = value; }
- }
- /** 物料描述 */
- private string itemDesc;
- public string ItemDesc
- {
- get { return itemDesc; }
- set { itemDesc = value; }
- }
- /** 物料名称 */
- private string itemName;
- public string ItemName
- {
- get { return itemName; }
- set { itemName = value; }
- }
- /** 物料英文名称 */
- private string itemDescE;
- public string ItemDescE
- {
- get { return itemDescE; }
- set { itemDescE = value; }
- }
- /** 物料型号规格 */
- private string itemSpec;
- public string ItemSpec
- {
- get { return itemSpec; }
- set { itemSpec = value; }
- }
- /** 是否使用采购单位 */
- private string itemUseUom;
- public string ItemUseUom
- {
- get { return itemUseUom; }
- set { itemUseUom = value; }
- }
- /** 采购单位(个、袋、桶) */
- private string itemUom;
- public string ItemUom
- {
- get { return itemUom; }
- set { itemUom = value; }
- }
- /** 转换系数 */
- private double? itemUomConefficient;
- public double? ItemUomConefficient
- {
- get { return itemUomConefficient; }
- set { itemUomConefficient = value; }
- }
- /** 库存单位 */
- private string weightUnit;
- public string WeightUnit
- {
- get { return weightUnit; }
- set { weightUnit = value; }
- }
- /** 预算价 */
- private double? bugPrice;
- public double? BugPrice
- {
- get { return bugPrice; }
- set { bugPrice = value; }
- }
- /** 期初库存数量 */
- private double? invPreviousBalanceQty;
- public double? InvPreviousBalanceQty
- {
- get { return invPreviousBalanceQty; }
- set { invPreviousBalanceQty = value; }
- }
- /** 期初库存金额 */
- private double? invPreviousBalanceAmt;
- public double? InvPreviousBalanceAmt
- {
- get { return invPreviousBalanceAmt; }
- set { invPreviousBalanceAmt = value; }
- }
- /** 库存收入量 */
- private double? invInQty;
- public double? InvInQty
- {
- get { return invInQty; }
- set { invInQty = value; }
- }
- /** 库存收入金额 */
- private double? invInAmt;
- public double? InvInAmt
- {
- get { return invInAmt; }
- set { invInAmt = value; }
- }
- /** 库存支出量 */
- private double? invOutQty;
- public double? InvOutQty
- {
- get { return invOutQty; }
- set { invOutQty = value; }
- }
- /** 库存支出金额 */
- private double? invOutAmt;
- public double? InvOutAmt
- {
- get { return invOutAmt; }
- set { invOutAmt = value; }
- }
- /** 期末库存数量 */
- private double? invEndingBalanceQty;
- public double? InvEndingBalanceQty
- {
- get { return invEndingBalanceQty; }
- set { invEndingBalanceQty = value; }
- }
- /** 期末库存金额 */
- private double? invEndingBalanceAmt;
- public double? InvEndingBalanceAmt
- {
- get { return invEndingBalanceAmt; }
- set { invEndingBalanceAmt = value; }
- }
- /** 暂估库存数量 */
- private double? invEstQty;
- public double? InvEstQty
- {
- get { return invEstQty; }
- set { invEstQty = value; }
- }
- /** 暂估库存金额 */
- private double? invEstAmt;
- public double? InvEstAmt
- {
- get { return invEstAmt; }
- set { invEstAmt = value; }
- }
- /** 结算库存数量 */
- private double? invBalanceQty;
- public double? InvBalanceQty
- {
- get { return invBalanceQty; }
- set { invBalanceQty = value; }
- }
- /** 结算库存金额 */
- private double? invBalanceAmt;
- public double? InvBalanceAmt
- {
- get { return invBalanceAmt; }
- set { invBalanceAmt = value; }
- }
- /** 备注 */
- private string remark;
- public string Remark
- {
- get { return remark; }
- set { remark = value; }
- }
- /** 数据状态(有效、无效) */
- private string validflag;
- public string Validflag
- {
- get { return validflag; }
- set { validflag = value; }
- }
- /** 创建人 */
- private string createName;
- public string CreateName
- {
- get { return createName; }
- set { createName = value; }
- }
- /** 创建时间 */
- private DateTime? createTime;
- public DateTime? CreateTime
- {
- get { return createTime; }
- set { createTime = value; }
- }
- /** 修改人 */
- private string updateName;
- public string UpdateName
- {
- get { return updateName; }
- set { updateName = value; }
- }
- /** 修改时间 */
- private DateTime? updateTime;
- public DateTime? UpdateTime
- {
- get { return updateTime; }
- set { updateTime = value; }
- }
- /** 创建人ID */
- private string createUserid;
- public string CreateUserid
- {
- get { return createUserid; }
- set { createUserid = value; }
- }
- /** 修改人ID */
- private string updateUserid;
- public string UpdateUserid
- {
- get { return updateUserid; }
- set { updateUserid = value; }
- }
- /** 废除人ID */
- private string deleteUserid;
- public string DeleteUserid
- {
- get { return deleteUserid; }
- set { deleteUserid = value; }
- }
- }
- }
|