Files
guofu-admin/src/api/think/thinkInvoice/model/index.ts
2024-08-23 22:28:24 +08:00

64 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}