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