using Datory;
using Datory.Annotations;
namespace GxPress.Entity.WorkMeeting
{
///
/// 会议地址
///
[DataTable("tede_meeting_location")]
public class MeetingLocation : Datory.Entity
{
///
/// 名称
///
[DataColumn]
public string Name { get; set; }
///
/// 详细地址
///
[DataColumn]
public string Address { get; set; }
[DataColumn]
public int Taxis { get; set; }
}
}