mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 20:03:26 +08:00
34 lines
676 B
C#
34 lines
676 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CoreCms.Net.Model.FromBody
|
|
{
|
|
public class FMSubmitInvoiceApply
|
|
{
|
|
/// <summary>
|
|
/// 发票类型
|
|
/// </summary>
|
|
public int type { get; set; }
|
|
|
|
/// <summary>
|
|
/// 抬头信息
|
|
/// </summary>
|
|
public string name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发票编码
|
|
/// </summary>
|
|
public string code { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 订单编号
|
|
/// </summary>
|
|
public string orderId { get; set; }
|
|
|
|
|
|
}
|
|
}
|