using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CallCenterApi.Model
{
///
/// 物资添加修改表
///
[Serializable]
public class addupdatelog
{
///
/// 操作记录表自增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; }
//0是添加 1是修改
public int type { get; set; }
public string companyName { get; set; }
}
}