using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Models
{
public class grouopExceedView
{
///
/// 团组名称
///
public string TeamName { get; set; }
///
/// 添加时间
///
public string operatorsDate { get; set; }
///
/// 超支类型
///
public int PriceType { get; set; }
///
/// 费用名称
///
public string PriceName { get; set; }
///
/// 费用
///
public float Price { get; set; }
///
/// 系数
///
public Decimal Coefficient { get; set; }
///
/// 币种
///
public string Currency { get; set; }
///
/// 录入时汇率
///
public float DayRate { get; set; }
///
/// 人民币费用
///
public float RMBPrice { get; set; }
public string remark { get; set; }
}
}