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.
59 lines
1.4 KiB
C#
59 lines
1.4 KiB
C#
using SqlSugar;
|
|
using System;
|
|
|
|
namespace CompressorXN_Model
|
|
{
|
|
/// <summary>
|
|
/// 辅助位规则
|
|
/// </summary>
|
|
public class T_Agreement_Help_Rule
|
|
{
|
|
public T_Agreement_Help_Rule()
|
|
{
|
|
Id = Guid.NewGuid().ToString();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 协议名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "agreement_name")]
|
|
public string AgreementName { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "bit7")]
|
|
public bool Bit7 { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "bit6")]
|
|
public bool Bit6 { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "bit5")]
|
|
public bool Bit5 { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "bit4")]
|
|
public bool Bit4 { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "bit3")]
|
|
public bool Bit3 { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "bit2")]
|
|
public bool Bit2 { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "bit1")]
|
|
public bool Bit1 { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "bit0")]
|
|
public bool Bit0 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排序
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "sort_index")]
|
|
public int SortIndex { get; set; }
|
|
}
|
|
}
|