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

40 lines
1.1 KiB
C#
Raw Normal View History

2019-03-25 16:32:58 +08:00
using System;
using System.Collections.Generic;
2019-03-26 08:46:52 +08:00
using System.ComponentModel.DataAnnotations.Schema;
2019-03-25 16:32:58 +08:00
using System.Linq;
using System.Web;
namespace CmdjyHisFront.Dal.Tables
{
/// <summary>
/// 上传记录表
/// </summary>
2019-03-26 08:46:52 +08:00
[Table("DjyPrescriptionInfoLog")]
public class DjyPrescriptionInfoLog
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>
public int HisPrescriptionInfoId { get; set; }
/// <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>
public int PrescriptionId { get; set; }
/// <summary>
2019-03-26 08:46:52 +08:00
/// 上传时间
2019-03-25 16:32:58 +08:00
/// </summary>
public DateTime PostDatatime { get; set; }
}
}