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
490 B
16 lines
490 B
2 years ago
|
namespace Zncy.CloudCar.WeChat.Service.Models
|
||
|
{
|
||
|
public class CreateOrderByJsapiRequest
|
||
|
{
|
||
|
public string MerchantId { get; set; } = default!;
|
||
|
|
||
|
public string AppId { get; set; } = default!;
|
||
|
|
||
|
public string OpenId { get; set; } = default!;
|
||
|
|
||
|
// NOTICE:
|
||
|
// 单机演示时金额来源于客户端请求,生产项目请改为服务端计算生成,切勿依赖客户端提供的金额结果。
|
||
|
public int Amount { get; set; }
|
||
|
}
|
||
|
}
|