64 lines
1.1 KiB
TypeScript
64 lines
1.1 KiB
TypeScript
import type { PageParam } from '@/api';
|
||
|
||
/**
|
||
*
|
||
*/
|
||
export interface ThinkInvoice {
|
||
//
|
||
id?: number;
|
||
// 发票的订单 请求批次号
|
||
incoiveNum?: string;
|
||
// 纳税人识别号
|
||
incoiveCode?: string;
|
||
// 订单号
|
||
orderNum?: string;
|
||
// 订单id
|
||
oid?: number;
|
||
// 用户id
|
||
uid?: number;
|
||
// 发票金额
|
||
price?: number;
|
||
// 公司名称
|
||
name?: string;
|
||
// 公司电话
|
||
tel?: string;
|
||
// 地址
|
||
address?: string;
|
||
// 开户行
|
||
bank?: string;
|
||
// 开户账号
|
||
account?: string;
|
||
// 税号
|
||
code?: string;
|
||
// 手机号码
|
||
phone?: string;
|
||
// 电子邮箱
|
||
email?: string;
|
||
// 备注信息
|
||
info?: string;
|
||
// 是否已开:1已开,2未开
|
||
isOpen?: string;
|
||
// 发票类型:1纸质发票,2电子发票
|
||
type?: number;
|
||
// 发票类型:1场地发票,2vip卡发票,3ic卡发票
|
||
itype?: number;
|
||
//
|
||
createTime?: number;
|
||
//
|
||
updateTime?: number;
|
||
// 1.普票,2是专票
|
||
invoicetype?: number;
|
||
//
|
||
vid?: number;
|
||
}
|
||
|
||
/**
|
||
* 搜索条件
|
||
*/
|
||
export interface ThinkInvoiceParam extends PageParam {
|
||
id?: number;
|
||
uid?: number;
|
||
oid?: number;
|
||
keywords?: string;
|
||
}
|