Grp_VisaProcessControl.cs 807 B

12345678910111213141516171819202122
  1. namespace OASystem.Domain.Entities.Groups
  2. {
  3. /// <summary>
  4. /// 签证流程管控
  5. /// </summary>
  6. [SugarTable(tableName: "Grp_VisaProcessControl",TableDescription = "签证流程管控")]
  7. public class Grp_VisaProcessControl:EntityBase
  8. {
  9. /// <summary>
  10. /// 团组Id(Grp_DelegationInfo)
  11. /// </summary>
  12. [SugarColumn(ColumnName = "GroupId", ColumnDescription = "团组Id(Grp_DelegationInfo)", IsNullable = true, ColumnDataType = "int")]
  13. public int GroupId { get; set; }
  14. /// <summary>
  15. /// 是否确认完成
  16. /// </summary>
  17. [SugarColumn(ColumnName = "IsCompleted", ColumnDescription = "确认完成", IsNullable = true, ColumnDataType = "bit")]
  18. public bool IsCompleted { get; set; } = false;
  19. }
  20. }