using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { public class DayAndCost { /// /// 标识 /// public int Id { get; set; } /// /// 团号 /// public int Diid { get; set; } /// /// 类型:1为住宿费;2为伙食费;3为公杂费 /// public int Type { get; set; } /// /// 天数 /// public int Days { get; set; } /// /// 地名 /// public string Place { get; set; } /// /// 费用标准 /// public string Cost { get; set; } /// /// 币种 /// public string Currency { get; set; } /// /// 小计 /// public string SubTotal { get; set; } /// /// /// public int OPer { get; set; } /// /// /// public string OPDate { get; set; } /// /// /// public int Isdel { get; set; } } }