添加汇付支付
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
package cn.pluss.platform.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@TableName("tb_pluss_merchant_hf_info")
|
||||
public class MmerchantHfInfo {
|
||||
@TableId(value = "id", type = IdType.AUTO)
|
||||
private Integer id;
|
||||
@TableField("merchant_code")
|
||||
private String merchantCode;
|
||||
@TableField("status")
|
||||
private String status;
|
||||
@TableField("test_api_key")
|
||||
private String test_api_key;
|
||||
@TableField("live_api_key")
|
||||
private String live_api_key;
|
||||
@TableField("app_id_list")
|
||||
private String app_id_list;
|
||||
@TableField("app_id")
|
||||
private String app_id;
|
||||
@TableField("app_name")
|
||||
private String app_name;
|
||||
@TableField("login_pwd")
|
||||
private String login_pwd;
|
||||
|
||||
@TableField("puc_key")
|
||||
private String puc_key;
|
||||
@TableField("priv_key")
|
||||
private String priv_key;
|
||||
|
||||
|
||||
@TableField("create_time")
|
||||
private Date create_time;
|
||||
@TableField("update_time")
|
||||
private Date update_time;
|
||||
}
|
||||
Reference in New Issue
Block a user