| 12345678910111213141516171819202122 | namespace OASystem.Domain.Entities.Groups{    /// <summary>    /// 签证流程管控    /// </summary>    [SugarTable(tableName: "Grp_VisaProcessControl",TableDescription = "签证流程管控")]    public class Grp_VisaProcessControl:EntityBase    {        /// <summary>        /// 团组Id(Grp_DelegationInfo)        /// </summary>        [SugarColumn(ColumnName = "GroupId", ColumnDescription = "团组Id(Grp_DelegationInfo)", IsNullable = true, ColumnDataType = "int")]        public int GroupId { get; set; }        /// <summary>        /// 是否确认完成        /// </summary>        [SugarColumn(ColumnName = "IsCompleted", ColumnDescription = "确认完成", IsNullable = true, ColumnDataType = "bit")]        public bool IsCompleted { get; set; } = false;    }}
 |