using System; using System.ComponentModel.DataAnnotations.Schema; namespace CmdjyHisFront.Dal.Tables { /// /// 上传记录表 /// [Table("DjyDrugInfoLog")] public class DjyDrugInfoLog { /// /// 序号 /// public int Id { get; set; } /// /// 药品表编号 /// public int HisDrugInfoId { get; set; } /// /// 上传返回代码 /// public int ResultCode { get; set; } /// /// 上传返回信息 /// public string ResultMsg { get; set; } /// /// 中心药品编号 /// public int DrugId { get; set; } /// /// 上传时间 /// public DateTime PostDatatime { get; set; } } }