UNIVPLMDataIntegration/Web/src/api-services/models/wechat-pay-output.ts

111 lines
2.4 KiB
TypeScript
Raw Normal View History

2024-06-15 13:02:35 +08:00
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
/**
*
*
* @export
* @interface WechatPayOutput
*/
export interface WechatPayOutput {
/**
* OpenId
*
* @type {string}
* @memberof WechatPayOutput
*/
openId?: string | null;
2024-07-12 01:17:06 +08:00
/**
* (),
*
* @type {string}
* @memberof WechatPayOutput
*/
outTradeNumber?: string | null;
/**
* ()
*
* @type {number}
* @memberof WechatPayOutput
*/
orderId?: number;
/**
* ()
*
* @type {number}
* @memberof WechatPayOutput
*/
orderStatus?: number;
2024-06-15 13:02:35 +08:00
/**
*
*
* @type {number}
* @memberof WechatPayOutput
*/
total?: number;
/**
*
*
* @type {string}
* @memberof WechatPayOutput
*/
attachment?: string | null;
/**
*
*
* @type {string}
* @memberof WechatPayOutput
*/
goodsTag?: string | null;
2024-07-12 01:17:06 +08:00
/**
*
*
* @type {Date}
* @memberof WechatPayOutput
*/
createTime?: Date;
/**
*
*
* @type {Date}
* @memberof WechatPayOutput
*/
successTime?: Date;
/**
* ()
*
* @type {string}
* @memberof WechatPayOutput
*/
tradeState?: string | null;
/**
* ()
*
* @type {string}
* @memberof WechatPayOutput
*/
tradeStateDescription?: string | null;
2024-06-15 13:02:35 +08:00
}