123
This commit is contained in:
@@ -0,0 +1,62 @@
|
||||
package com.ruoyi.cai.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
/**
|
||||
* 四方支付配置对象 cai_pay_trd_config
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2024-11-25
|
||||
*/
|
||||
@Data
|
||||
@TableName("cai_pay_trd_config")
|
||||
public class PayTrdConfig implements Serializable {
|
||||
|
||||
private static final long serialVersionUID=1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id")
|
||||
private Long id;
|
||||
/**
|
||||
* 第三方支付类型
|
||||
*/
|
||||
private String type;
|
||||
/**
|
||||
* 第三方支付名称
|
||||
*/
|
||||
private String name;
|
||||
/**
|
||||
* 请求域名
|
||||
*/
|
||||
private String gatewayUrl;
|
||||
/**
|
||||
* 回调域名
|
||||
*/
|
||||
private String notifyUrl;
|
||||
/**
|
||||
* 商户ID
|
||||
*/
|
||||
private String mchId;
|
||||
/**
|
||||
* 秘钥
|
||||
*/
|
||||
private String sign;
|
||||
|
||||
private String aliProductId;
|
||||
|
||||
private Integer enableStatus;
|
||||
/**
|
||||
* 是否删除
|
||||
*/
|
||||
private Integer deleteFlag;
|
||||
|
||||
private LocalDateTime createTime;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user