using System.ComponentModel;
using DS.Module.Core;
using DS.Module.Core.Data;
using DS.Module.Core.Enums;
using SqlSugar;
namespace DS.WMS.Core.Op.Entity
{
///
/// 业务编码表
///
[SqlSugar.SugarTable("op_business_sequence", "业务编码表")]
public class BusinessSequence: BaseModel
{
[SugarColumn(ColumnDescription = "编码规则Id")]
public long SequenceId { get; set; }
///
/// 当前值
///
[SugarColumn(ColumnDescription = "当前值", IsNullable = true)]
public int CurrentNo { get; set; }
///
/// 编码前缀
///
[SugarColumn(ColumnDescription = "编码前缀", Length = 100, IsNullable = true)]
public string Prefix { get; set; }
///
/// 当前编码
///
[SugarColumn(ColumnDescription = "当前编码",Length =100,IsNullable = true)]
public string CurrentCode { get; set; }
///
/// 当前重置依赖,即最后一次获取编码的日期
///
[SugarColumn(ColumnDescription = "当前重置依赖", Length = 100, IsNullable = true)]
public string CurrentReset { get; set; }
}
}