using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CallCenterApi.Model
{
///
/// customerBorrow:外部客户操作实体类(属性说明自动提取数据库字段的描述信息)
///
[Serializable]
public class customerBorrow
{
///
/// 外部客户操作表则增id
///
public int id { get; set; }
///
/// 物品编号 关联档案物资 借阅物品名称
///
public int? archivesid { get; set; }
///
/// 区分借阅还是归还
///
///
public string BorrowOreturn { get; set; }
///
/// 物品借阅时间
///
public DateTime BorrowDate { get; set; }
///
/// 借阅人/归还人
///
///
public string BorrowPeople { get; set; }
///
///档案物资名称 关联档案物资表需要显示的
///
public string A_archiveName { get; set; }
}
}