using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// archives:档案物资实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class archivesNew { #region Model public int id { get; set; } /// /// 关联客户表中的客户编号 /// //public string A_ArchiveCode //{ // set { A_archiveCode = value; } // get { return A_archiveCode; } //} public string A_archiveCode { get; set; } /// /// 物资名称 /// //public string A_ArchiveName //{ // set { A_archiveName = value; } // get { return A_archiveName; } //} public string A_archiveName { get; set; } public int? A_archiveState { get; set; } public string A_archivePeople { get; set; } /// /// 外键状态名称 /// public string stateName { get; set; } /// /// 操作内容 /// /// public string OperationContent { get; set; } /// /// 操作时间 /// public DateTime? OperationDate { get; set; } /// /// 上传附件的id /// public int fileid { get; set; } /// /// 判断是添加还是修改==0为添加大于0为修改 /// public int isadd { get; set; } /// /// 客户名称 /// public string A_CompanyName { get; set; } #endregion Model } }