namespace Models
{
public partial class EnterExitPrice
{
///
///
///
public int Id { get; set; }
///
/// 洲别
///
public string Continent { get; set; }
///
/// 国家
///
public string Country { get; set; }
///
/// 城市
///
public string City { get; set; }
///
/// 币种
///
public string Currency { get; set; }
///
/// 住宿费
///
public string RoomCost { get; set; }
///
/// 伙食费
///
public string FoodCost { get; set; }
///
/// 公杂费
///
public string PublicCost { get; set; }
///
///
///
public int Oper { get; set; }
///
///
///
public string Opdate { get; set; }
///
///
///
public int Isdel { get; set; }
}
}