"拉卡拉进件支付代码"

This commit is contained in:
hankaikai
2023-06-01 17:14:02 +08:00
parent 6f6938daa4
commit c29c10c193
19 changed files with 741 additions and 203 deletions

View File

@@ -0,0 +1,44 @@
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_back_lkl")
public class MerchantBackLkl {
@TableId(value = "id", type = IdType.AUTO)
private Integer id;
@TableField("merchant_code")
private String merchantCode;
@TableField("merchant_id")
private String merchantId;
@TableField("channel")
private String channel;
@TableField("user_no")
private String userNo;
@TableField("customer_no")
private String customerNo;
@TableField("external_customer_no")
private String externalCustomerNo;
@TableField("term_nos")
private String termNos;
@TableField("agency_no")
private String agencyNo;
@TableField("active_no")
private String activeNo;
@TableField("contract_id")
private String contractId;
@TableField("core_term_ids")
private String coreTermIds;
@TableField("create_time")
private Date createTime;
@TableField("update_time")
private Date updateTime;
}