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.

45 lines
977 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
/// <summary>
/// 状态主表
/// </summary>
public class StatusSkuBaseDto
{
/// <summary>
/// 主键
/// </summary>
public string PKId { get; set; }
/// <summary>
/// 状态代码
/// </summary>
public string StatusSKUCode { get; set; }
/// <summary>
/// 状态名称
/// </summary>
public string StatusSKUName { get; set; }
/// <summary>
/// 显示颜色(背景色)
/// </summary>
public string BackgroundColor { get; set; }
/// <summary>
/// 显示顺序号
/// </summary>
public int SortNo { get; set; }
/// <summary>
/// 状态说明
/// </summary>
public string StatusSKUNote { get; set; }
}
}