体检系统架构
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
485 B

namespace PEIS.Common.Helper.WeChat.Models
{
public class WeChatPayModel
{
public string PayCode { get; set; }
public string Title { get; set; }
public string CallNo { get; set; }
public decimal TotalFee { get; set; }
public string Name { get; set; }
public string CardNo { get; set; }
public string PatientId { get; set; }
public string Mid { get; set; }
public string CollectId { get; set; }
}
}