docs: 完善微信商户平台模块的示例项目

This commit is contained in:
Fu Diwei
2021-07-31 21:21:15 +08:00
parent 9fcf4ab1d2
commit 05a276dfe1
6 changed files with 171 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Sample_Net5.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; }
}
}