using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Models
{
///
/// 培训费用信息
///
public class TrainingExpenses
{
public int id { get; set; }
///
/// 大陆
///
public string continent { get;set;}
///
/// 国家
///
public string country { get;set;}
///
/// 货币
///
public string currency { get;set;}
///
/// 金额
///
public float expense { get;set;}
///
/// 添加时间
///
public DateTime operationTime { get;set;}
///
/// 操作人
///
public string operationUser { get;set;}
///
/// 是否删除
///
public int isdel { get;set;}
}
}