
22 changed files with 427 additions and 197 deletions
Binary file not shown.
@ -0,0 +1,26 @@ |
|||
package com.yxt.anrui.fin.api.finvehicleinvoice; |
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @author Administrator |
|||
* @description |
|||
* @date 2023/5/9 14:54 |
|||
*/ |
|||
@Data |
|||
public class FinInvoiceInformationVo implements Vo { |
|||
@ApiModelProperty("开票名称") |
|||
private String invoicingName; |
|||
@ApiModelProperty("地址") |
|||
private String address; |
|||
@ApiModelProperty("联系电话") |
|||
private String telPhone; |
|||
@ApiModelProperty("开户行") |
|||
private String openingBank; |
|||
@ApiModelProperty("银行账号") |
|||
private String bankNum; |
|||
@ApiModelProperty("纳税人识别号") |
|||
private String taxpayerNo; |
|||
} |
@ -1,43 +1,44 @@ |
|||
<?xml version="1.0" encoding="UTF-8" ?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
<mapper namespace="com.yxt.anrui.fin.biz.finbillfile.FinBillFileMapper"> |
|||
<!-- <where> ${ew.sqlSegment} </where>--> |
|||
<!-- ${ew.customSqlSegment} --> |
|||
<select id="selectPageVo" resultType="com.yxt.anrui.fin.api.finbillfile.FinBillFileVo"> |
|||
SELECT * FROM fin_bill_file <where> ${ew.sqlSegment} </where> |
|||
</select> |
|||
|
|||
<select id="selectListAllVo" resultType="com.yxt.anrui.fin.api.finbillfile.FinBillFileVo"> |
|||
SELECT * FROM fin_bill_file <where> ${ew.sqlSegment} </where> |
|||
</select> |
|||
<!-- <where> ${ew.sqlSegment} </where>--> |
|||
<!-- ${ew.customSqlSegment} --> |
|||
<select id="selectPageVo" resultType="com.yxt.anrui.fin.api.finbillfile.FinBillFileVo"> |
|||
SELECT * FROM fin_bill_file |
|||
<where>${ew.sqlSegment}</where> |
|||
</select> |
|||
|
|||
<select id="fetchBillFileBySid" resultType="com.yxt.anrui.fin.api.finbillfile.FinBillFileVo"> |
|||
SELECT |
|||
* |
|||
FROM |
|||
fin_bill_file |
|||
WHERE billAppSid = #{sid} |
|||
GROUP BY fileType |
|||
</select> |
|||
<select id="selectListAllVo" resultType="com.yxt.anrui.fin.api.finbillfile.FinBillFileVo"> |
|||
SELECT * FROM fin_bill_file |
|||
<where>${ew.sqlSegment}</where> |
|||
</select> |
|||
|
|||
<select id="fetchFileBySid" resultType="com.yxt.anrui.fin.api.finbillfile.FinBillFileDetailsVo"> |
|||
SELECT |
|||
* |
|||
FROM |
|||
fin_bill_file |
|||
WHERE billAppSid = #{billAppSid} |
|||
AND fileType = #{fileType} |
|||
</select> |
|||
<select id="fetchBillFileBySid" resultType="com.yxt.anrui.fin.api.finbillfile.FinBillFileVo"> |
|||
SELECT * |
|||
FROM fin_bill_file |
|||
WHERE billAppSid = #{sid} |
|||
GROUP BY fileType |
|||
</select> |
|||
|
|||
<select id="groupByList" resultType="com.yxt.anrui.fin.api.finbillfile.FinBillFileVo"> |
|||
SELECT |
|||
fileType, |
|||
createTime, |
|||
createByName |
|||
FROM |
|||
fin_bill_file |
|||
WHERE billAppSid = #{sid} |
|||
GROUP BY fileType |
|||
ORDER BY createTime DESC |
|||
</select> |
|||
<select id="fetchFileBySid" resultType="com.yxt.anrui.fin.api.finbillfile.FinBillFileDetailsVo"> |
|||
SELECT * |
|||
FROM fin_bill_file |
|||
WHERE billAppSid = #{billAppSid} |
|||
AND fileType = #{fileType} |
|||
</select> |
|||
|
|||
<select id="groupByList" resultType="com.yxt.anrui.fin.api.finbillfile.FinBillFileVo"> |
|||
SELECT fileType, |
|||
createTime, |
|||
createByName |
|||
FROM fin_bill_file |
|||
WHERE billAppSid = #{sid} |
|||
GROUP BY fileType |
|||
ORDER BY createTime DESC |
|||
</select> |
|||
<select id="fetchFileByBillSid" resultType="com.yxt.anrui.fin.api.finbillfile.FinBillFileVo"> |
|||
SELECT * |
|||
FROM fin_bill_file |
|||
WHERE billAppSid = #{sid} |
|||
</select> |
|||
</mapper> |
Loading…
Reference in new issue