| | |
| | | |
| | | namespace WIDESEA_Model.Models |
| | | { |
| | | [SugarTable(nameof(Dt_CodeRuleConfig))] |
| | | /// <summary> |
| | | /// ç¼ç çæè§åé
ç½® |
| | | /// </summary> |
| | | [SugarTable(nameof(Dt_CodeRuleConfig), "ç¼ç çæè§åé
ç½®")] |
| | | public class Dt_CodeRuleConfig : BaseEntity |
| | | { |
| | | /// <summary> |
| | | /// ä¸»é® |
| | | /// </summary> |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主é®")] |
| | | public int Id { get; set; } |
| | | |
| | | /// <summary> |
| | | /// è§åç¼å· |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "è§åç¼å·")] |
| | | public string RuleCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// è§ååç§° |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "è§ååç§°")] |
| | | public string RuleName { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false,ColumnDescription ="æµæ°´å·èµ·å§å¼")] |
| | | /// <summary> |
| | | /// æµæ°´å·èµ·å§å¼ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "æµæ°´å·èµ·å§å¼")] |
| | | public int StartVal { get; set; } |
| | | |
| | | /// <summary> |
| | | /// åç¼å符串 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 2, ColumnDescription = "åç¼å符串")] |
| | | public string StartStr { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ç¼ç è§å |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "ç¼ç è§å")] |
| | | public string Format { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æµæ°´å·é¿åº¦ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "æµæ°´å·é¿åº¦")] |
| | | public int Length { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æµæ°´å·å½åå¼ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "æµæ°´å·å½åå¼")] |
| | | public int CurrentVal { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 夿³¨ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 500, ColumnDescription = "夿³¨")] |
| | | public string Remark { get; set; } |
| | | } |