using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EMIS.ViewModel.ExaminationApply { public class ExaminationRegistrationPayView { public System.Guid? WechatPayListID { get; set; } public Guid ExaminationRegistrationID { get; set; } public decimal? Fee { get; set; } public string OrderID { get; set; } public string WechatOrderID { get; set; } public string RefundOrderID { get; set; } public Nullable RefundTotal { get; set; } public int? RecordStatus { get; set; } } }