优化网站导航模块

This commit is contained in:
2024-08-23 22:28:24 +08:00
parent 1d81fa9270
commit 13832d9de0
964 changed files with 90774 additions and 31362 deletions

View File

@@ -0,0 +1,63 @@
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;
}