using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CallCenterApi.Model
{
///
/// archives:档案物资实体类(属性说明自动提取数据库字段的描述信息)
///
[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;
///
/// 自增ID
///
//public int Id
//{
// set { id = value; }
// get { return id; }
//}
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; }
///
/// 物资状态 关联状态表中的id
///
//public int? A_ArchiveState
//{
// set { A_archiveState = value; }
// get { return A_archiveState; }
//}
public int? A_archiveState { get; set; }
/////
///// 最近一次变更记录 关联操作记录表中的id
/////
////public int? A_ArchiveRecord
////{
//// set { A_archiveRecord = value; }
//// get { return A_archiveRecord; }
////}
//public int? A_archiveRecord { get; set; }
///
/// 操作人
///
//public string A_ArchivePeople
//{
// set { A_archivePeople = value; }
// get { return A_archivePeople; }
//}
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 F_CompanyName { get; set; }
#endregion Model
}
}