using Ant.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity { /// /// 类YW_TouristTrip。 /// /// [Table("YW_TouristTrip")] public class EntYW_TouristTrip { public EntYW_TouristTrip() { } #region Model private Guid? _id; private DateTime? _starttime; private double? _borrowedtime; private DateTime? _endtime; private string _siteid; private string _carid; private string _uid; private decimal? _costs; private string _lang; private int? _paystate; private string _createper; private DateTime? _createdate; private string _updateuser; private DateTime? _updatedate; /// /// /// [Column("ID", IsPrimaryKey = true)] public Guid? ID { set { _id = value; } get { return _id; } } /// /// /// public DateTime? StartTime { set { _starttime = value; } get { return _starttime; } } /// /// /// public double? BorrowedTime { set { _borrowedtime = value; } get { return _borrowedtime; } } /// /// /// public DateTime? EndTime { set { _endtime = value; } get { return _endtime; } } /// /// /// public string CarID { set { _carid = value; } get { return _carid; } } /// /// /// public string UID { set { _uid = value; } get { return _uid; } } /// /// /// public decimal? Costs { set { _costs = value; } get { return _costs; } } /// /// /// public string lang { set { _lang = value; } get { return _lang; } } /// /// 状态 /// public int? State { get;set; } /// /// /// public string Createper { set { _createper = value; } get { return _createper; } } /// /// /// public DateTime? CreateDate { set { _createdate = value; } get { return _createdate; } } /// /// /// public string UpdateUser { set { _updateuser = value; } get { return _updateuser; } } /// /// /// public DateTime? UpdateDate { set { _updatedate = value; } get { return _updatedate; } } #endregion Model } }