init
This commit is contained in:
64
ruoyi-cai/src/main/java/com/ruoyi/cai/domain/PayConfig.java
Normal file
64
ruoyi-cai/src/main/java/com/ruoyi/cai/domain/PayConfig.java
Normal file
@@ -0,0 +1,64 @@
|
||||
package com.ruoyi.cai.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 支付配置对象 cai_pay_config
|
||||
*
|
||||
* @author 77
|
||||
* @date 2024-01-20
|
||||
*/
|
||||
@Data
|
||||
@TableName("cai_pay_config")
|
||||
public class PayConfig implements Serializable {
|
||||
|
||||
private static final long serialVersionUID=1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
private Long id;
|
||||
/**
|
||||
* 1支付宝2微信
|
||||
*/
|
||||
private Integer payType;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String name;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String wxMcid;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String wxKey;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String appid;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String privateKey;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String publicKey;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String notifyUrl;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private Integer enableStatus;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user