using MongoDB.Bson; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Entitys.Algorithm { //[DataContract] public class TN_AB_STOCKEntity { [JsonIgnore] public ObjectId _id { get; set; } #region Model private string _cn_s_stock_code; private string _cn_s_stock_name; private string _cn_s_stock_type; private string _cn_c_is_init = "N"; private DateTime _cn_t_init; private string _cn_s_note; private string _cn_s_org_name; private string _cn_s_cur_period; private string _cn_c_is_close = "Y"; private string _cn_s_creator = "0"; private string _cn_s_creator_by; private DateTime _cn_t_create; private string _cn_s_modify_by; private string _cn_s_modify; private DateTime _cn_t_modify; private string _cn_guid; private string _cn_s_status; private string _cn_s_department; private string _cn_s_organ; private string _cn_s_from; private string _cn_s_create_type; private string _cn_s_belong_org; /// /// /// public string CN_S_STOCK_CODE { set { _cn_s_stock_code = value; } get { return _cn_s_stock_code; } } /// /// /// public string CN_S_STOCK_NAME { set { _cn_s_stock_name = value; } get { return _cn_s_stock_name; } } /// /// /// public string CN_S_STOCK_TYPE { set { _cn_s_stock_type = value; } get { return _cn_s_stock_type; } } /// /// /// public string CN_C_IS_INIT { set { _cn_c_is_init = value; } get { return _cn_c_is_init; } } /// /// /// public DateTime CN_T_INIT { set { _cn_t_init = value; } get { return _cn_t_init; } } /// /// /// public string CN_S_NOTE { set { _cn_s_note = value; } get { return _cn_s_note; } } /// /// /// public string CN_S_ORG_NAME { set { _cn_s_org_name = value; } get { return _cn_s_org_name; } } /// /// /// public string CN_S_CUR_PERIOD { set { _cn_s_cur_period = value; } get { return _cn_s_cur_period; } } /// /// /// public string CN_C_IS_CLOSE { set { _cn_c_is_close = value; } get { return _cn_c_is_close; } } /// /// /// public string CN_S_CREATOR { set { _cn_s_creator = value; } get { return _cn_s_creator; } } /// /// /// public string CN_S_CREATOR_BY { set { _cn_s_creator_by = value; } get { return _cn_s_creator_by; } } /// /// /// public DateTime CN_T_CREATE { set { _cn_t_create = value; } get { return _cn_t_create; } } /// /// /// public string CN_S_MODIFY_BY { set { _cn_s_modify_by = value; } get { return _cn_s_modify_by; } } /// /// /// public string CN_S_MODIFY { set { _cn_s_modify = value; } get { return _cn_s_modify; } } /// /// /// public DateTime CN_T_MODIFY { set { _cn_t_modify = value; } get { return _cn_t_modify; } } /// /// /// public string CN_GUID { set { _cn_guid = value; } get { return _cn_guid; } } /// /// /// public string CN_S_STATUS { set { _cn_s_status = value; } get { return _cn_s_status; } } /// /// /// public string CN_S_DEPARTMENT { set { _cn_s_department = value; } get { return _cn_s_department; } } /// /// /// public string CN_S_ORGAN { set { _cn_s_organ = value; } get { return _cn_s_organ; } } /// /// /// public string CN_S_FROM { set { _cn_s_from = value; } get { return _cn_s_from; } } /// /// /// public string CN_S_CREATE_TYPE { set { _cn_s_create_type = value; } get { return _cn_s_create_type; } } /// /// /// public string CN_S_BELONG_ORG { set { _cn_s_belong_org = value; } get { return _cn_s_belong_org; } } #endregion Model } }