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.

56 lines
1.3 KiB
C#

using Furion.DistributedIDGenerator;
using Myshipping.Application.Entity.TrackingSystem;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application.Entity
{
[SugarTable("status_sku_base")]
[Description("状态主表")]
public class StatusSkuBaseInfo : TrackingSystemDbEntity
{
public StatusSkuBaseInfo()
{
PK_ID = IDGen.NextID().ToString();
CreatedTime = DateTime.Now;
}
/// <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; }
}
}