chenjiahe
2023-08-07 25866c956af27afbbfc8919375c37d75bf051cf5
提交 | 用户 | age
515b69 1 package com.hz.his.vo.payment;
C 2
3 import lombok.Data;
4
5 /**
6  * @author CJH
7  */
8 @Data
9 public class PayNoVo {
c0b777 10
25866c 11     /**Y-16-订单号*/
515b69 12     private String orderNo;
25866c 13     /**Y-12-叠加长度,在orderNo后面添加长度,默认6,
C 14      * 没有特殊要求都是默认6,最大12*/
515b69 15     private Integer lengrhCount = 6;
25866c 16     /**N-交易方式*/
515b69 17     private String payWay;
c0b777 18     /**Y-调起支付用户*/
C 19     private String userId;
25866c 20     /**N-调起支付员工*/
C 21     private String employeeId;
515b69 22     /**Y-关联类型*/
C 23     private Integer type;
24     /**Y-关联类型标识*/
25     private String typeId;
26
87a64e 27     /**N-支付方式编号(PaymentMethod里面的编号),关联订单的支付方式记录*/
C 28     private String paymentNo;
29
515b69 30     /**关联类型-总订单*/
C 31     public static final int TYPE_ORDER = 0;
32
33     /**交易方式-微信*/
34     public static final String PAY_WAY_WECHAT = "WECHAT";
35     /**交易方式-支付宝*/
36     public static final String PAY_WAY_ALIPAY = "ALIPAY";
37     /**交易方式-银联*/
38     public static final String PAY_WAY_UNIONPAY = "UNIONPAY";
39     /**交易方式-数字人民币*/
40     public static final String PAY_WAYE_EC = "EC";
41 }