using System; using System.Collections.Generic; using System.Linq; using System.Web; using HcUtility.Core; using Newtonsoft.Json; namespace DSWeb.Areas.TruckMng.Models.MsWlTruck { [JsonObject] public class MsWlTruckCert : ModelObjectBillHead { #region private Fields private string _gID; [ModelDB(MDBType = ModelDBOprationType.All, IsPrimary = true)] public string GID { get { return _gID; } set { _gID = value; } } private string _truckNo; [ModelDB] public string TruckNo { get { return _truckNo; } set { _truckNo = value; } } private int _pic_Type; [ModelDB] //1行车证、2营运证、3驾驶证、4资格证、5车俩照片、6驾驶员身份证 public int Pic_Type { get { return _pic_Type; } set { _pic_Type = value; } } private string _pic_Name; [ModelDB] public string Pic_Name { get { return _pic_Name; } set { _pic_Name = value; } } private string _pic_Path; [ModelDB] public string Pic_Path { get { return _pic_Path; } set { _pic_Path = value; } } private string _createTime; public string CreateTime { get { return _createTime; } set { _createTime = value; } } private string _updateTime; public string UpdateTime { get { return _updateTime; } set { _updateTime = value; } } private string _certTypeName; public string CertTypeName { get { return _certTypeName; } set { _certTypeName = value; } } private string _operator; [ModelDB] public string Operator { get { return _operator; } set { _operator = value; } } private decimal _delFlag; [ModelDB] public decimal DelFlag { get { return _delFlag; } set { _delFlag = value; } } #endregion } }