C#公共类
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.

20 lines
548 B

3 years ago
using System;
using System.Collections.Generic;
using System.Text;
namespace 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; }
}
}