using MongoDB.Bson; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Entitys.Basic { public class AutomStockEntity { [JsonIgnore] public ObjectId _id { get; set; } public string CN_S_STOCK_CODE { get; set; } public string CN_S_STOCK_NAME { get; set; } public string CN_S_STOCK_TYPE { get; set; } public string CN_C_IS_INIT { get; set; } public DateTime? CN_T_INIT { get; set; } public string CN_S_NOTE { get; set; } public string CN_S_ORG_NAME { get; set; } public string CN_S_CUR_PERIOD { get; set; } public string CN_C_IS_CLOSE { get; set; } public string CN_S_CREATOR { get; set; } public string CN_S_CREATOR_BY { get; set; } public DateTime? CN_T_CREATE { get; set; } public string CN_S_MODIFY_BY { get; set; } public string CN_S_MODIFY { get; set; } public DateTime? CN_T_MODIFY { get; set; } public string CN_GUID { get; set; } public string CN_S_STATUS { get; set; } public string CN_S_DEPARTMENT { get; set; } public string CN_S_ORGAN { get; set; } public string CN_S_FROM { get; set; } public string CN_S_CREATE_TYPE { get; set; } public string CN_S_BELONG_ORG { get; set; } } }