wsd_djy/WebSiteCode/Cmdjy/CmdjyHisFront/Dal/Tables/DjyDrugInfoLog.cs

37 lines
978 B
C#
Raw Normal View History

2019-03-25 16:32:58 +08:00
using System;
2019-03-26 08:46:52 +08:00
using System.ComponentModel.DataAnnotations.Schema;
2019-03-25 16:32:58 +08:00
namespace CmdjyHisFront.Dal.Tables
{
/// <summary>
/// 上传记录表
/// </summary>
2019-03-26 08:46:52 +08:00
[Table("DjyDrugInfoLog")]
public class DjyDrugInfoLog
2019-03-25 16:32:58 +08:00
{
/// <summary>
2019-03-26 08:46:52 +08:00
/// 序号
2019-03-25 16:32:58 +08:00
/// </summary>
public int Id { get; set; }
/// <summary>
2019-03-26 08:46:52 +08:00
/// 药品表编号
2019-03-25 16:32:58 +08:00
/// </summary>
2019-03-26 08:46:52 +08:00
public int HisDrugInfoId { get; set; }
2019-03-25 16:32:58 +08:00
/// <summary>
2019-03-26 08:46:52 +08:00
/// 上传返回代码
2019-03-25 16:32:58 +08:00
/// </summary>
public int ResultCode { get; set; }
/// <summary>
2019-03-26 08:46:52 +08:00
/// 上传返回信息
2019-03-25 16:32:58 +08:00
/// </summary>
public string ResultMsg { get; set; }
/// <summary>
2019-03-26 08:46:52 +08:00
/// 中心药品编号
2019-03-25 16:32:58 +08:00
/// </summary>
2019-03-26 08:46:52 +08:00
public int DrugId { get; set; }
2019-03-25 16:32:58 +08:00
/// <summary>
2019-03-26 08:46:52 +08:00
/// 上传时间
2019-03-25 16:32:58 +08:00
/// </summary>
public DateTime PostDatatime { get; set; }
}
}