using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Groups
{
///
/// 会务活动主表
///
public class Grp_ConferenceAffairsCost : Entities.EntityBase
{
///
/// 城市
///
public string City { get; set; }
///
/// 权限控制
///
//public string PermissionControl { get; set; }
///
/// 团组Id
///
public int Diid { get; set; }
///
/// 分配金额
///
public decimal AllocationAmount { get; set; }
///
/// 分配币种
///
public int AllocationCurrency { get;set; }
///
/// 分配时汇率
///
public decimal AllocationRate { get; set; }
///
/// 分配团组Id
///
public int AllocationGroupId { get; set; }
///
/// 成本总计
///
public decimal CostAll { get; set; }
///
/// 报价总计
///
public decimal BaoJiaAll { get; set; }
}
///
/// 会务活动子表
///
public class Grp_ConferenceAffairsCostChild : Entities.EntityBase
{
///
/// 是否选中
///
//public bool isCheck { get; set; }
///
/// 序号
///
public int Index { get; set; }
///
/// 费用类型
///
public int PriceType { get; set; }
///
/// 费用名称
///
public string PriceName { get; set; }
///
/// 成本费用
///
public decimal CostPrice { get; set; }
///
/// 币种
///
public int Currency { get; set; }
///
/// 当时汇率
///
public decimal Rate { get; set; }
///
/// 数量
///
public int Count { get; set; }
///
/// 单位
///
public int Unit { get; set; }
///
/// 系数
///
public decimal Coefficient { get; set; }
///
/// 报价金额
///
public decimal BaoJiaPrice { get; set; }
///
/// 附加值
///
public decimal AddedValue { get;set; }
///
/// 明细
///
public string Details { get; set; }
///
/// 审核状态
///
public int ReviewStatus { get; set; }
///
/// 团组Id
///
public int Diid { get; set; }
///
/// 主表Id
///
public int ConferenceAffairsCostId { get; set; }
}
///
/// 会务活动权限控制
///
public class Grp_ConferenceAffairsCostControl : Entities.EntityBase
{
///
/// 团组Id
///
public int Diid { get; set; }
///
/// 用户Id
///
public int UserId { get; set; }
}
}