26 changed files with 409 additions and 156 deletions
@ -1,5 +1,10 @@ |
|||
<?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.finpaymentapplyeve.FinPaymentapplyEveMapper"> |
|||
|
|||
<select id="selPayEveSidList" resultType="java.lang.String"> |
|||
SELECT sid FROM fin_paymentapply_eve WHERE eveSid IN |
|||
<foreach collection="eveSidList" item="item" open="(" close=")" separator=","> |
|||
#{item} |
|||
</foreach> |
|||
</select> |
|||
</mapper> |
@ -0,0 +1,64 @@ |
|||
/********************************************************* |
|||
********************************************************* |
|||
******************** ******************* |
|||
************* ************ |
|||
******* _oo0oo_ ******* |
|||
*** o8888888o *** |
|||
* 88" . "88 * |
|||
* (| -_- |) * |
|||
* 0\ = /0 * |
|||
* ___/`---'\___ * |
|||
* .' \\| |// '. *
|
|||
* / \\||| : |||// \ *
|
|||
* / _||||| -:- |||||- \ * |
|||
* | | \\\ - /// | | *
|
|||
* | \_| ''\---/'' |_/ | * |
|||
* \ .-\__ '-' ___/-. / * |
|||
* ___'. .' /--.--\ `. .'___ * |
|||
* ."" '< `.___\_<|>_/___.' >' "". * |
|||
* | | : `- \`.;`\ _ /`;.`/ - ` : | | * |
|||
* \ \ `_. \_ __\ /__ _/ .-` / / * |
|||
* =====`-.____`.___ \_____/___.-`___.-'===== * |
|||
* `=---=' * |
|||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * |
|||
*********__佛祖保佑__永无BUG__验收通过__钞票多多__********* |
|||
*********************************************************/ |
|||
package com.yxt.anrui.terminal.api.finance.paymentapply; |
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.math.BigDecimal; |
|||
|
|||
@Data |
|||
@ApiModel(value = "付款申请-平仓 视图数据详情", description = "付款申请-平仓 视图数据详情") |
|||
public class PaymentapplyEveDetailsVo implements Vo { |
|||
|
|||
private String sid; // sid
|
|||
|
|||
@ApiModelProperty("备注") |
|||
private String remarks; |
|||
@ApiModelProperty("付款申请sid") |
|||
private String applySid; // 付款申请sid
|
|||
@ApiModelProperty("平仓款名称") |
|||
private String costTitleValue; // 平仓款名称
|
|||
@ApiModelProperty("融资付款开通日期") |
|||
private String openDate; // 融资付款开通日期
|
|||
@ApiModelProperty("期数") |
|||
private String period; // 期数
|
|||
@ApiModelProperty("付款方式Key") |
|||
private String payWayKey; // 付款方式Key
|
|||
@ApiModelProperty("付款方式Value") |
|||
private String payWayValue; // 付款方式Value
|
|||
@ApiModelProperty("收款单位名称") |
|||
private String receiveCompany; // 收款单位名称
|
|||
@ApiModelProperty("收款银行账号") |
|||
private String receivingAccount; // 收款银行账号
|
|||
@ApiModelProperty("开户行") |
|||
private String bank; // 开户行
|
|||
@ApiModelProperty("平仓付款金额") |
|||
private BigDecimal exePayPrice; // 平仓付款金额
|
|||
|
|||
} |
@ -0,0 +1,68 @@ |
|||
/********************************************************* |
|||
********************************************************* |
|||
******************** ******************* |
|||
************* ************ |
|||
******* _oo0oo_ ******* |
|||
*** o8888888o *** |
|||
* 88" . "88 * |
|||
* (| -_- |) * |
|||
* 0\ = /0 * |
|||
* ___/`---'\___ * |
|||
* .' \\| |// '. *
|
|||
* / \\||| : |||// \ *
|
|||
* / _||||| -:- |||||- \ * |
|||
* | | \\\ - /// | | *
|
|||
* | \_| ''\---/'' |_/ | * |
|||
* \ .-\__ '-' ___/-. / * |
|||
* ___'. .' /--.--\ `. .'___ * |
|||
* ."" '< `.___\_<|>_/___.' >' "". * |
|||
* | | : `- \`.;`\ _ /`;.`/ - ` : | | * |
|||
* \ \ `_. \_ __\ /__ _/ .-` / / * |
|||
* =====`-.____`.___ \_____/___.-`___.-'===== * |
|||
* `=---=' * |
|||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * |
|||
*********__佛祖保佑__永无BUG__验收通过__钞票多多__********* |
|||
*********************************************************/ |
|||
package com.yxt.anrui.terminal.api.finance.paymentapply; |
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.math.BigDecimal; |
|||
|
|||
@Data |
|||
@ApiModel(value = "付款申请上装 视图数据详情", description = "付款申请上装 视图数据详情") |
|||
public class PaymentapplyTopDetailsVo implements Vo { |
|||
|
|||
private String sid; // sid
|
|||
|
|||
@ApiModelProperty("付款申请sid") |
|||
private String applySid; // 付款申请sid
|
|||
@ApiModelProperty("上装名称") |
|||
private String installNameValue; // 上装名称
|
|||
@ApiModelProperty("货箱内部尺寸") |
|||
private String size; // 货箱内部尺寸
|
|||
@ApiModelProperty("车架号") |
|||
private String vinNo; // 车架号
|
|||
@ApiModelProperty("上装sid") |
|||
private String topSid; // 上装sid
|
|||
@ApiModelProperty("箱体颜色") |
|||
private String color; // 箱体颜色
|
|||
@ApiModelProperty("厂家结算价") |
|||
private BigDecimal costPrice; // 厂家结算价
|
|||
@ApiModelProperty("品牌名称") |
|||
private String brandName; // 品牌名称
|
|||
@ApiModelProperty("车型别名") |
|||
private String vehModel; // 车型别名
|
|||
@ApiModelProperty("合同编号") |
|||
private String contractNo; // 合同编号
|
|||
@ApiModelProperty("销售订单号") |
|||
private String saleOrderNo; // 销售订单号
|
|||
@ApiModelProperty("客户名称") |
|||
private String customerName; // 客户名称
|
|||
@ApiModelProperty("销售类型") |
|||
private String payType; // 销售类型
|
|||
|
|||
} |
@ -0,0 +1,70 @@ |
|||
/********************************************************* |
|||
********************************************************* |
|||
******************** ******************* |
|||
************* ************ |
|||
******* _oo0oo_ ******* |
|||
*** o8888888o *** |
|||
* 88" . "88 * |
|||
* (| -_- |) * |
|||
* 0\ = /0 * |
|||
* ___/`---'\___ * |
|||
* .' \\| |// '. *
|
|||
* / \\||| : |||// \ *
|
|||
* / _||||| -:- |||||- \ * |
|||
* | | \\\ - /// | | *
|
|||
* | \_| ''\---/'' |_/ | * |
|||
* \ .-\__ '-' ___/-. / * |
|||
* ___'. .' /--.--\ `. .'___ * |
|||
* ."" '< `.___\_<|>_/___.' >' "". * |
|||
* | | : `- \`.;`\ _ /`;.`/ - ` : | | * |
|||
* \ \ `_. \_ __\ /__ _/ .-` / / * |
|||
* =====`-.____`.___ \_____/___.-`___.-'===== * |
|||
* `=---=' * |
|||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * |
|||
*********__佛祖保佑__永无BUG__验收通过__钞票多多__********* |
|||
*********************************************************/ |
|||
package com.yxt.anrui.terminal.api.finance.paymentapply; |
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.math.BigDecimal; |
|||
|
|||
@Data |
|||
@ApiModel(value = "付款申请挂车 视图数据详情", description = "付款申请挂车 视图数据详情") |
|||
public class PaymentapplyTrailerDetailsVo implements Vo { |
|||
|
|||
private String sid; // sid
|
|||
|
|||
@ApiModelProperty("付款申请sid") |
|||
private String applySid; // 付款申请sid
|
|||
@ApiModelProperty("挂车名称") |
|||
private String trailerTypeValue; // 挂车名称
|
|||
@ApiModelProperty("外观尺寸") |
|||
private String size; // 外观尺寸
|
|||
@ApiModelProperty("车架号") |
|||
private String vinNo; // 车架号
|
|||
@ApiModelProperty("挂车sid") |
|||
private String trailerSid; // 挂车sid
|
|||
@ApiModelProperty("箱体颜色") |
|||
private String color; // 箱体颜色
|
|||
@ApiModelProperty("厂家结算价") |
|||
private BigDecimal costPrice; // 厂家结算价
|
|||
@ApiModelProperty("品牌名称") |
|||
private String brandName; // 品牌名称
|
|||
@ApiModelProperty("车型别名") |
|||
private String vehModel; // 车型别名
|
|||
@ApiModelProperty("主车车架号") |
|||
private String zcVinNo; // 主车车架号
|
|||
@ApiModelProperty("合同编号") |
|||
private String contractNo; // 合同编号
|
|||
@ApiModelProperty("销售订单号") |
|||
private String saleOrderNo; // 销售订单号
|
|||
@ApiModelProperty("客户名称") |
|||
private String customerName; // 客户名称
|
|||
@ApiModelProperty("销售类型") |
|||
private String payType; // 销售类型
|
|||
|
|||
} |
Loading…
Reference in new issue