using System;
using SqlSugar;
using System.Linq;
using System.ComponentModel;
using System.Collections.Generic;
using Tiger.Model;
namespace Tiger.Model.Minsun
{
///
/// 实体:WMS_STORAGEINVENTORY_H
///
[Description("Primary:Id")]
[Serializable]
[SugarTable("WMS_STORAGEINVENTORY_H")]
public class WMS_STORAGEINVENTORY_H : iDBEntity
{
#region 构造函数
///
/// 实体:WMS_STORAGEINVENTORY_H
///
public WMS_STORAGEINVENTORY_H() {}
#endregion
#region 公共属性
///
/// 主键
///
[SugarColumn(IsPrimaryKey = true)]
public string Id { get; set; }
///
///
///
public string BILLCODE { get; set; }
///
///
///
public string WAREHOUSECODE { get; set; }
///
///
///
public string CHECKTYPE { get; set; }
///
///
///
public string STATUS { get; set; }
///
///
///
public string CHECKNATURE { get; set; }
///
///
///
public DateTime CHECKSTARTTIME { get; set; } = DateTime.MinValue;
///
///
///
public string CHECKSTARTUSERNAME { get; set; }
///
///
///
public DateTime SETTLETIME { get; set; } = DateTime.MinValue;
///
///
///
public string SETTLEUSERNAME { get; set; }
///
///
///
public DateTime CHECKENDTIME { get; set; } = DateTime.MinValue;
///
///
///
public string CHECKENDUSERNAME { get; set; }
///
///
///
public bool ISADJUST { get; set; }
///
///
///
public string REMARK { get; set; }
///
///
///
public DateTime LastModificationTime { get; set; } = DateTime.MinValue;
///
///
///
public long LastModifierUserId { get; set; }
///
///
///
public DateTime CreationTime { get; set; } = DateTime.MinValue;
///
///
///
public long CreatorUserId { get; set; }
#endregion
#region 虚拟属性
/*例子
[SugarColumn(IsIgnore = true)]
public string FieldName { get; set; }
*/
#endregion
#region 枚举变量
/*例子
public enum FieldNames
{
[Description("枚举描述0")]
Enum0,
[Description("枚举描述1")]
Enum1,
}
*/
#endregion
#region 公共方法
#endregion
}//endClass
}