using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// Operationlog :操作记录表实体类信息 /// [Serializable] public class Operationlog { /// /// 操作记录表自增id /// public int id { get; set; } /// /// 操作人 /// /// public string Operator { get; set; } /// /// 操作内容 /// /// public string OperationContent { get; set; } /// /// 操作时间 /// public DateTime? OperationDate { get; set; } /// /// 物资id /// public int? archivesid { get; set; } /// /// 物资档案名称 /// public string A_archiveName { get; set; } } }