| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414 |
- using Core.Mes.Client.Comm.Attribute;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace Core.StlMes.Client.PnCost.Models
- {
- /// <summary>
- /// 数据库表COST_BASE_PRICE所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:doubi-PC 时间:2016-09-20
- /// </summary>
- public class CostBasePriceEntity
- {
- /// <summary>
- /// 物料编码(来源于采购系统表PUR_MAT)
- /// </summary>
- private string itemCode = "";
- /// <summary>
- /// 物料名称(来源于采购系统表PUR_MAT)
- /// </summary>
- private string itemName = "";
- /// <summary>
- /// 物料编码(来源于采购系统表PUR_BASE_INFO)
- /// </summary>
- private string arcCode = "";
- /// <summary>
- /// 物料名称(来源于采购系统表PUR_BASE_INFO)
- /// </summary>
- private string arcItem = "";
- /// <summary>
- /// 年份(4位)
- /// </summary>
- private decimal? year = null;
- /// <summary>
- /// 1月价格(元/吨)
- /// </summary>
- private decimal? month1 = null;
- /// <summary>
- /// 2月价格(元/吨)
- /// </summary>
- private decimal? month2 = null;
- /// <summary>
- /// 3月价格(元/吨)
- /// </summary>
- private decimal? month3 = null;
- /// <summary>
- /// 4月价格(元/吨)
- /// </summary>
- private decimal? month4 = null;
- /// <summary>
- /// 5月价格(元/吨)
- /// </summary>
- private decimal? month5 = null;
- /// <summary>
- /// 6月价格(元/吨)
- /// </summary>
- private decimal? month6 = null;
- /// <summary>
- /// 7月价格(元/吨)
- /// </summary>
- private decimal? month7 = null;
- /// <summary>
- /// 8月价格(元/吨)
- /// </summary>
- private decimal? month8 = null;
- /// <summary>
- /// 9月价格(元/吨)
- /// </summary>
- private decimal? month9 = null;
- /// <summary>
- /// 10月价格(元/吨)
- /// </summary>
- private decimal? month10 = null;
- /// <summary>
- /// 11月价格(元/吨)
- /// </summary>
- private decimal? month11 = null;
- /// <summary>
- /// 12月价格(元/吨)
- /// </summary>
- private decimal? month12 = null;
- /// <summary>
- /// 创建人
- /// </summary>
- private string createName = "";
- /// <summary>
- /// 创建时间
- /// </summary>
- private string createTime = "";
- /// <summary>
- /// 修改人
- /// </summary>
- private string updateName = "";
- /// <summary>
- /// 修改时间
- /// </summary>
- private string updateTime = "";
- /// <summary>
- /// 删除人
- /// </summary>
- private string deleteName = "";
- /// <summary>
- /// 删除时间
- /// </summary>
- private string deleteTime = "";
- /// <summary>
- /// 有效标志(1:有效,0:无效)
- /// </summary>
- private string validflag = "";
- /// <summary>
- /// 备注
- /// </summary>
- private string memo = "";
- /// <summary>
- /// 物料编码(来源于采购系统表PUR_MAT)
- /// </summary>
- [Description("物料编码")]
- [Nullable(false)]
- [DataLength(100)]
- public string ItemCode
- {
- get { return itemCode; }
- set { itemCode = value; }
- }
- /// <summary>
- /// 物料名称(来源于采购系统表PUR_MAT)
- /// </summary>
- [Description("物料")]
- [Nullable(false)]
- [DataLength(100)]
- public string ItemName
- {
- get { return itemName; }
- set { itemName = value; }
- }
- /// <summary>
- /// 分类编码(来源于采购系统表PUR_BASE_INFO)
- /// </summary>
- [Description("分类描述")]
- [Nullable(false)]
- [DataLength(20)]
- public string ArcCode
- {
- get { return arcCode; }
- set { arcCode = value; }
- }
- /// <summary>
- /// 分类名称(来源于采购系统表PUR_BASE_INFO)
- /// </summary>
- [Description("物料分类")]
- [Nullable(false)]
- [DataLength(100)]
- public string ArcItem
- {
- get { return arcItem; }
- set { arcItem = value; }
- }
- /// <summary>
- /// 年份(4位)
- /// </summary>
- [Description("年份")]
- [Nullable(false)]
- [DataLength(4)]
- public decimal? Year
- {
- get { return year; }
- set { year = value; }
- }
- /// <summary>
- /// 1月价格(元/吨)
- /// </summary>
- [Description("1月价格(元/吨)")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? Month1
- {
- get { return month1; }
- set { month1 = value; }
- }
- /// <summary>
- /// 2月价格(元/吨)
- /// </summary>
- [Description("2月价格(元/吨)")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? Month2
- {
- get { return month2; }
- set { month2 = value; }
- }
- /// <summary>
- /// 3月价格(元/吨)
- /// </summary>
- [Description("3月价格(元/吨)")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? Month3
- {
- get { return month3; }
- set { month3 = value; }
- }
- /// <summary>
- /// 4月价格(元/吨)
- /// </summary>
- [Description("4月价格(元/吨)")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? Month4
- {
- get { return month4; }
- set { month4 = value; }
- }
- /// <summary>
- /// 5月价格(元/吨)
- /// </summary>
- [Description("5月价格(元/吨)")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? Month5
- {
- get { return month5; }
- set { month5 = value; }
- }
- /// <summary>
- /// 6月价格(元/吨)
- /// </summary>
- [Description("6月价格(元/吨)")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? Month6
- {
- get { return month6; }
- set { month6 = value; }
- }
- /// <summary>
- /// 7月价格(元/吨)
- /// </summary>
- [Description("7月价格(元/吨)")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? Month7
- {
- get { return month7; }
- set { month7 = value; }
- }
- /// <summary>
- /// 8月价格(元/吨)
- /// </summary>
- [Description("8月价格(元/吨)")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? Month8
- {
- get { return month8; }
- set { month8 = value; }
- }
- /// <summary>
- /// 9月价格(元/吨)
- /// </summary>
- [Description("9月价格(元/吨)")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? Month9
- {
- get { return month9; }
- set { month9 = value; }
- }
- /// <summary>
- /// 10月价格(元/吨)
- /// </summary>
- [Description("10月价格(元/吨)")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? Month10
- {
- get { return month10; }
- set { month10 = value; }
- }
- /// <summary>
- /// 11月价格(元/吨)
- /// </summary>
- [Description("11月价格(元/吨)")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? Month11
- {
- get { return month11; }
- set { month11 = value; }
- }
- /// <summary>
- /// 12月价格(元/吨)
- /// </summary>
- [Description("12月价格(元/吨)")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? Month12
- {
- get { return month12; }
- set { month12 = value; }
- }
- /// <summary>
- /// 创建人
- /// </summary>
- [Description("创建人")]
- [Nullable(true)]
- [DataLength(20)]
- public string CreateName
- {
- get { return createName; }
- set { createName = value; }
- }
- /// <summary>
- /// 创建时间
- /// </summary>
- [Description("创建时间")]
- [Nullable(true)]
- public string CreateTime
- {
- get { return createTime; }
- set { createTime = value; }
- }
- /// <summary>
- /// 修改人
- /// </summary>
- [Description("修改人")]
- [Nullable(true)]
- [DataLength(20)]
- public string UpdateName
- {
- get { return updateName; }
- set { updateName = value; }
- }
- /// <summary>
- /// 修改时间
- /// </summary>
- [Description("修改时间")]
- [Nullable(true)]
- public string UpdateTime
- {
- get { return updateTime; }
- set { updateTime = value; }
- }
- /// <summary>
- /// 删除人
- /// </summary>
- [Description("删除人")]
- [Nullable(true)]
- [DataLength(20)]
- public string DeleteName
- {
- get { return deleteName; }
- set { deleteName = value; }
- }
- /// <summary>
- /// 删除时间
- /// </summary>
- [Description("删除时间")]
- [Nullable(true)]
- public string DeleteTime
- {
- get { return deleteTime; }
- set { deleteTime = value; }
- }
- /// <summary>
- /// 有效标志(1:有效,0:无效)
- /// </summary>
- [Description("有效标志")]
- [Nullable(false)]
- [DataLength(1)]
- public string Validflag
- {
- get { return validflag; }
- set { validflag = value; }
- }
- /// <summary>
- /// 备注
- /// </summary>
- [Description("备注")]
- [Nullable(true)]
- [DataLength(500)]
- public string Memo
- {
- get { return memo; }
- set { memo = value; }
- }
- }
- }
|