using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
///
/// 行程内容类
///
public class StrokeContent
{
int id;
///
/// 主键编号
///
public int Id
{
get { return id; }
set { id = value; }
}
int sId;
///
/// 行程外键编号
///
public int SId
{
get { return sId; }
set { sId = value; }
}
string date;
///
/// 日期
///
public string Date
{
get { return date; }
set { date = value; }
}
string cityRange;
///
/// 城市范围
///
public string CityRange
{
get { return cityRange; }
set { cityRange = value; }
}
string traffic;
///
/// 交通
///
public string Traffic
{
get { return traffic; }
set { traffic = value; }
}
string content;
///
/// 内容
///
public string Content
{
get { return content; }
set { content = value; }
}
int point;
///
/// 简要详细行程标识
///
public int Point
{
get { return point; }
set { point = value; }
}
}
}