parent
2b3f5e9a3c
commit
9d2508ddb6
@ -0,0 +1,40 @@ |
||||
package com.jianshui.platform.dto.invoicered; |
||||
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
import com.jianshui.common.annotation.Excel; |
||||
import com.jianshui.common.core.page.PageDomain; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* @Author: kk |
||||
* @Description: 发票查询返回 |
||||
* @DateTime: 2023/6/8 16:23 |
||||
* @Params: |
||||
* @Return |
||||
*/ |
||||
@Data |
||||
@ApiModel("单据录入") |
||||
public class InvoiceQueryPDTO extends PageDomain { |
||||
|
||||
@ApiModelProperty(value = "购方名称") |
||||
private String buyerName; |
||||
|
||||
@ApiModelProperty(value = "发票代码") |
||||
private String fpdm; |
||||
|
||||
@ApiModelProperty(value = "发票号码") |
||||
private String fphm; |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
} |
@ -0,0 +1,59 @@ |
||||
package com.jianshui.platform.vo.invoicered; |
||||
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
import com.jianshui.common.core.domain.BaseEntity; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* @Author: kk |
||||
* @Description: 发票查询返回 |
||||
* @DateTime: 2023/6/8 16:23 |
||||
* @Params: |
||||
* @Return |
||||
*/ |
||||
@Data |
||||
@ApiModel("单据录入") |
||||
public class InvoiceQueryPVO{ |
||||
|
||||
@ApiModelProperty(value = "购方名称") |
||||
private String buyerName; |
||||
|
||||
@ApiModelProperty(value = "购方税号") |
||||
private String buyerTaxnum; |
||||
|
||||
@ApiModelProperty(value = "发票代码") |
||||
private String fpdm; |
||||
|
||||
@ApiModelProperty(value = "发票号码") |
||||
private String fphm; |
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||
@ApiModelProperty(value = "开票日期") |
||||
private Date kprq; |
||||
|
||||
@ApiModelProperty(value = "不含税金额") |
||||
private BigDecimal taxfreeamt; |
||||
|
||||
@ApiModelProperty(value = "税额") |
||||
private BigDecimal tax; |
||||
|
||||
@ApiModelProperty(value = "价税合计") |
||||
private String jshj; |
||||
|
||||
@ApiModelProperty(value = "销方名称") |
||||
private String sellerName; |
||||
|
||||
@ApiModelProperty(value = "销方税号") |
||||
private String sellerTaxnum; |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
} |
Loading…
Reference in new issue