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