| 123456789101112131415161718192021222324252627282930313233343536373839404142 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace OASystem.Domain.Entities.Groups{    /// <summary>    /// 签证提成    /// </summary>    [SqlSugar.SugarTable("Grp_VisaCommission")]    public class Grp_VisaCommission : EntityBase    {        /// <summary>        /// 团组Id         /// 外键        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "int")]        public int DiId { get; set; }        /// <summary>        /// 用户Id         /// 归属人        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "int")]        public int UId { get; set; }        /// <summary>        /// 国家        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]        public string Country { get; set; }        /// <summary>        /// 数量        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "int")]        public int Quantity { get; set; }    }}
 |