using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity { public class YW_Apply_CarLock { public YW_Apply_CarLock() { } #region Model private Guid _id; private string _carid; private string _reason; private string _apply_name; private int? _apply_type; private int? _state; private DateTime? _add_time; private string _add_name; /// /// /// public Guid ID { set { _id = value; } get { return _id; } } /// /// /// public string carid { set { _carid = value; } get { return _carid; } } /// /// /// public string reason { set { _reason = value; } get { return _reason; } } /// /// /// public string apply_name { set { _apply_name = value; } get { return _apply_name; } } /// /// /// public int? apply_type { set { _apply_type = value; } get { return _apply_type; } } /// /// /// public int? state { set { _state = value; } get { return _state; } } /// /// /// public DateTime? add_time { set { _add_time = value; } get { return _add_time; } } /// /// /// public string add_name { set { _add_name = value; } get { return _add_name; } } /// /// /// public DateTime? lock_time { get; set; } #endregion Model } }