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.
52 lines
1.7 KiB
C#
52 lines
1.7 KiB
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.WMS.Core.Op.Entity
|
|
{
|
|
/// <summary>
|
|
/// 订舱货物状态管理
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("op_booking_goods_status_config", "订舱货物状态管理")]
|
|
public class BookingGoodsStatusConfig : BaseModel<long>
|
|
{
|
|
/// <summary>
|
|
/// 系统编码
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "系统编码", IsNullable = false, Length = 100)]
|
|
public string SystemCode { get; set; }
|
|
/// <summary>
|
|
/// 状态名称
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "状态名称", IsNullable = false, Length = 100)]
|
|
public string StatusName { get; set; }
|
|
/// <summary>
|
|
/// 状态颜色
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "状态颜色", IsNullable = false, Length = 100)]
|
|
public string StatusColor { get; set; }
|
|
/// <summary>
|
|
/// 排序
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "排序", IsNullable = true)]
|
|
public int? OrderNo { get; set; } = 100;
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "备注", Length = 100, IsNullable = true)]
|
|
public string Note { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态 0启用 1禁用
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "状态", DefaultValue = "0")]
|
|
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
|
|
}
|
|
}
|