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