| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- package me.zhengjie.dao.mybatis.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 java.io.Serializable;
- /**
- * <p>
- * 支付宝配置类
- * </p>
- *
- * @author humuyu
- * @since 2022-03-10
- */
- @TableName("tool_alipay_config")
- public class ToolAlipayConfigEntity implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * ID
- */
- @TableId(value = "config_id", type = IdType.ASSIGN_ID)
- private Long configId;
- /**
- * 应用ID
- */
- @TableField("app_id")
- private String appId;
- /**
- * 编码
- */
- @TableField("charset")
- private String charset;
- /**
- * 类型 固定格式json
- */
- @TableField("format")
- private String format;
- /**
- * 网关地址
- */
- @TableField("gateway_url")
- private String gatewayUrl;
- /**
- * 异步回调
- */
- @TableField("notify_url")
- private String notifyUrl;
- /**
- * 私钥
- */
- @TableField("private_key")
- private String privateKey;
- /**
- * 公钥
- */
- @TableField("public_key")
- private String publicKey;
- /**
- * 回调地址
- */
- @TableField("return_url")
- private String returnUrl;
- /**
- * 签名方式
- */
- @TableField("sign_type")
- private String signType;
- /**
- * 商户号
- */
- @TableField("sys_service_provider_id")
- private String sysServiceProviderId;
- public Long getConfigId() {
- return configId;
- }
- public ToolAlipayConfigEntity setConfigId(Long configId) {
- this.configId = configId;
- return this;
- }
- public String getAppId() {
- return appId;
- }
- public ToolAlipayConfigEntity setAppId(String appId) {
- this.appId = appId;
- return this;
- }
- public String getCharset() {
- return charset;
- }
- public ToolAlipayConfigEntity setCharset(String charset) {
- this.charset = charset;
- return this;
- }
- public String getFormat() {
- return format;
- }
- public ToolAlipayConfigEntity setFormat(String format) {
- this.format = format;
- return this;
- }
- public String getGatewayUrl() {
- return gatewayUrl;
- }
- public ToolAlipayConfigEntity setGatewayUrl(String gatewayUrl) {
- this.gatewayUrl = gatewayUrl;
- return this;
- }
- public String getNotifyUrl() {
- return notifyUrl;
- }
- public ToolAlipayConfigEntity setNotifyUrl(String notifyUrl) {
- this.notifyUrl = notifyUrl;
- return this;
- }
- public String getPrivateKey() {
- return privateKey;
- }
- public ToolAlipayConfigEntity setPrivateKey(String privateKey) {
- this.privateKey = privateKey;
- return this;
- }
- public String getPublicKey() {
- return publicKey;
- }
- public ToolAlipayConfigEntity setPublicKey(String publicKey) {
- this.publicKey = publicKey;
- return this;
- }
- public String getReturnUrl() {
- return returnUrl;
- }
- public ToolAlipayConfigEntity setReturnUrl(String returnUrl) {
- this.returnUrl = returnUrl;
- return this;
- }
- public String getSignType() {
- return signType;
- }
- public ToolAlipayConfigEntity setSignType(String signType) {
- this.signType = signType;
- return this;
- }
- public String getSysServiceProviderId() {
- return sysServiceProviderId;
- }
- public ToolAlipayConfigEntity setSysServiceProviderId(String sysServiceProviderId) {
- this.sysServiceProviderId = sysServiceProviderId;
- return this;
- }
- @Override
- public String toString() {
- return "ToolAlipayConfigEntity{" +
- "configId=" + configId +
- ", appId=" + appId +
- ", charset=" + charset +
- ", format=" + format +
- ", gatewayUrl=" + gatewayUrl +
- ", notifyUrl=" + notifyUrl +
- ", privateKey=" + privateKey +
- ", publicKey=" + publicKey +
- ", returnUrl=" + returnUrl +
- ", signType=" + signType +
- ", sysServiceProviderId=" + sysServiceProviderId +
- "}";
- }
- }
|