| 123456789101112131415161718192021222324252627282930313233 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace OASystem.Domain.Entities.Groups{    [SugarTable("Grp_CheckBoxs")]    public class Grp_CheckBoxs : EntityBase    {        /// <summary>        /// 团组id        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "int")]        public int Diid { get; set; }        /// <summary>        /// 选中区域  Top, Left, Right        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(30)")]        public string CbType { get; set; }        /// <summary>        /// 选中的值        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(500)")]        public string CbValues { get; set; }    }    public class Grp_CheckBoxsView: Grp_CheckBoxs    {    }}
 |