mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-26 22:15:06 +08:00
update 开票详情页面
This commit is contained in:
@@ -18,4 +18,29 @@ public class InvoiceTitleVO {
|
||||
|
||||
// 抬头类型 (单位或个人)
|
||||
private String titleType;
|
||||
|
||||
/**
|
||||
* 税号
|
||||
*/
|
||||
private String taxId;
|
||||
|
||||
/**
|
||||
* 单位地址
|
||||
*/
|
||||
private String unitAddress;
|
||||
|
||||
/**
|
||||
* 电话号码
|
||||
*/
|
||||
private String phoneNumber;
|
||||
|
||||
/**
|
||||
* 开户银行
|
||||
*/
|
||||
private String bankName;
|
||||
|
||||
/**
|
||||
* 银行账户
|
||||
*/
|
||||
private String bankAccountNumber;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,48 @@
|
||||
package com.jsowell.pile.vo.web;
|
||||
|
||||
import com.jsowell.pile.vo.uniapp.InvoiceTitleVO;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Builder
|
||||
public class InvoiceRecordVO {
|
||||
/**
|
||||
* 申请记录主键id
|
||||
*/
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 会员id
|
||||
*/
|
||||
private String memberId;
|
||||
|
||||
/**
|
||||
* 状态 0-未开票 1-已开票
|
||||
*/
|
||||
private String status;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private String createTime;
|
||||
|
||||
/**
|
||||
* 更新时间x
|
||||
*/
|
||||
private String updateTime;
|
||||
|
||||
/**
|
||||
* 发票抬头信息
|
||||
*/
|
||||
private InvoiceTitleVO invoiceTitle;
|
||||
|
||||
/**
|
||||
* 订单明细
|
||||
*/
|
||||
// private List<> orderList;
|
||||
}
|
||||
Reference in New Issue
Block a user