You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
3.7 KiB
C#
125 lines
3.7 KiB
C#
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.WMS.Core.Op.Entity
|
|
{
|
|
/// <summary>
|
|
/// 状态主表
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("status_sku_base", "状态主表")]
|
|
public class StatusSkuBaseInfo
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "主键", IsPrimaryKey = true)]
|
|
public string PK_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态代码
|
|
/// </summary>
|
|
public string STATUS_SKU_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态名称
|
|
/// </summary>
|
|
public string STATUS_SKU_NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 显示颜色(背景色)
|
|
/// </summary>
|
|
public string BACKGROUND_COLOR { get; set; }
|
|
|
|
/// <summary>
|
|
/// 显示顺序号
|
|
/// </summary>
|
|
public int SORT_NO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否启用
|
|
/// </summary>
|
|
public int IS_ENABLE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态说明
|
|
/// </summary>
|
|
public string STATUS_SKU_NOTE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[Description("创建时间")]
|
|
[SugarColumn(IsOnlyIgnoreUpdate = true, ColumnDescription = "创建时间")]
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
[Description("创建人")]
|
|
[SugarColumn(IsOnlyIgnoreUpdate = true, IsNullable = true, ColumnDescription = "创建人")]
|
|
public long CreateBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 修改人
|
|
/// </summary>
|
|
[Description("修改人")]
|
|
[SugarColumn(IsNullable = true, ColumnDescription = "修改人")]
|
|
public long? UpdateBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
[Description("更新时间")]
|
|
[SugarColumn(IsNullable = true, ColumnDescription = "更新时间")]
|
|
public Nullable<DateTime> UpdateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 删除
|
|
/// </summary>
|
|
[Description("删除")]
|
|
[SugarColumn(ColumnDescription = "是否删除", DefaultValue = "0")]
|
|
public bool Deleted { get; set; }
|
|
|
|
/// <summary>
|
|
/// 删除时间
|
|
/// </summary>
|
|
[Description("删除时间")]
|
|
[SugarColumn(IsNullable = true, ColumnDescription = "删除时间", IsOnlyIgnoreInsert = true)]
|
|
public Nullable<DateTime> DeleteTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 删除人
|
|
/// </summary>
|
|
[Description("删除人")]
|
|
[SugarColumn(IsNullable = true, ColumnDescription = "删除人", IsOnlyIgnoreInsert = true)]
|
|
public Nullable<long> DeleteBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人名称
|
|
/// </summary>
|
|
[Description("创建人名称")]
|
|
[SugarColumn(IsOnlyIgnoreUpdate = true, IsNullable = true, ColumnDescription = "创建人名称", Length = 50)]
|
|
public string CreateUserName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 修改人名称
|
|
/// </summary>
|
|
[Description("修改人名称")]
|
|
[SugarColumn(IsNullable = true, ColumnDescription = "修改人名称", Length = 50)]
|
|
public string UpdateUserName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 删除人名称
|
|
/// </summary>
|
|
[Description("删除人名称")]
|
|
[SugarColumn(IsNullable = true, ColumnDescription = "删除人名称", Length = 50, IsOnlyIgnoreInsert = true)]
|
|
public string DeleteUserName { get; set; }
|
|
}
|
|
}
|