using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Web;
namespace CmdjyHisFront.Dal.Tables
{
///
/// 上传记录表
///
[Table("DjyPrescriptionInfoLog")]
public class DjyPrescriptionInfoLog
{
///
/// 序号
///
public int Id { get; set; }
///
/// 处方表编号
///
public int HisPrescriptionInfoId { get; set; }
///
/// 上传返回代码
///
public int ResultCode { get; set; }
///
/// 上传返回信息
///
public string ResultMsg { get; set; }
///
/// 中心处方编号
///
public int PrescriptionId { get; set; }
///
/// 上传时间
///
public DateTime PostDatatime { get; set; }
}
}