using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace CmdjyHisFront.Dal.Tables { /// /// 上传记录表 /// public class PostLog { /// /// /// 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; } } }