mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-14 23:08:35 +08:00
update
This commit is contained in:
@@ -2,6 +2,8 @@ package com.jsowell.pile.domain;
|
|||||||
|
|
||||||
import com.jsowell.common.annotation.Excel;
|
import com.jsowell.common.annotation.Excel;
|
||||||
import com.jsowell.common.core.domain.BaseEntity;
|
import com.jsowell.common.core.domain.BaseEntity;
|
||||||
|
import lombok.Getter;
|
||||||
|
import lombok.Setter;
|
||||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||||
|
|
||||||
@@ -11,6 +13,8 @@ import org.apache.commons.lang3.builder.ToStringStyle;
|
|||||||
* @author jsowell
|
* @author jsowell
|
||||||
* @date 2023-06-15
|
* @date 2023-06-15
|
||||||
*/
|
*/
|
||||||
|
@Getter
|
||||||
|
@Setter
|
||||||
public class AdapayMemberAccount extends BaseEntity {
|
public class AdapayMemberAccount extends BaseEntity {
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
@@ -19,6 +23,11 @@ public class AdapayMemberAccount extends BaseEntity {
|
|||||||
*/
|
*/
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 状态 0-待审核;1-审核通过
|
||||||
|
*/
|
||||||
|
private String status;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 运营商id
|
* 运营商id
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
|
|
||||||
<resultMap type="com.jsowell.pile.domain.AdapayMemberAccount" id="AdapayMemberAccountResult">
|
<resultMap type="com.jsowell.pile.domain.AdapayMemberAccount" id="AdapayMemberAccountResult">
|
||||||
<result property="id" column="id" />
|
<result property="id" column="id" />
|
||||||
|
<result property="status" column="status" />
|
||||||
<result property="merchantId" column="merchant_id" />
|
<result property="merchantId" column="merchant_id" />
|
||||||
<result property="adapayMemberId" column="adapay_member_id" />
|
<result property="adapayMemberId" column="adapay_member_id" />
|
||||||
<result property="settleAccountId" column="settle_account_id" />
|
<result property="settleAccountId" column="settle_account_id" />
|
||||||
@@ -17,7 +18,7 @@
|
|||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
<sql id="Base_Column_List">
|
<sql id="Base_Column_List">
|
||||||
id, merchant_id, adapay_member_id, settle_account_id, create_time, create_by, update_time, update_by, del_flag
|
id, status, merchant_id, adapay_member_id, settle_account_id, create_time, create_by, update_time, update_by, del_flag
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
<sql id="selectAdapayMemberAccountVo">
|
<sql id="selectAdapayMemberAccountVo">
|
||||||
@@ -43,6 +44,7 @@
|
|||||||
<insert id="insertAdapayMemberAccount" parameterType="com.jsowell.pile.domain.AdapayMemberAccount" useGeneratedKeys="true" keyProperty="id">
|
<insert id="insertAdapayMemberAccount" parameterType="com.jsowell.pile.domain.AdapayMemberAccount" useGeneratedKeys="true" keyProperty="id">
|
||||||
insert into adapay_member_account
|
insert into adapay_member_account
|
||||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||||
|
<if test="status != null">status,</if>
|
||||||
<if test="merchantId != null">merchant_id,</if>
|
<if test="merchantId != null">merchant_id,</if>
|
||||||
<if test="adapayMemberId != null">adapay_member_id,</if>
|
<if test="adapayMemberId != null">adapay_member_id,</if>
|
||||||
<if test="settleAccountId != null">settle_account_id,</if>
|
<if test="settleAccountId != null">settle_account_id,</if>
|
||||||
@@ -53,6 +55,7 @@
|
|||||||
<if test="delFlag != null">del_flag,</if>
|
<if test="delFlag != null">del_flag,</if>
|
||||||
</trim>
|
</trim>
|
||||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||||
|
<if test="status != null">#{status},</if>
|
||||||
<if test="merchantId != null">#{merchantId},</if>
|
<if test="merchantId != null">#{merchantId},</if>
|
||||||
<if test="adapayMemberId != null">#{adapayMemberId},</if>
|
<if test="adapayMemberId != null">#{adapayMemberId},</if>
|
||||||
<if test="settleAccountId != null">#{settleAccountId},</if>
|
<if test="settleAccountId != null">#{settleAccountId},</if>
|
||||||
@@ -67,6 +70,7 @@
|
|||||||
<update id="updateAdapayMemberAccount" parameterType="com.jsowell.pile.domain.AdapayMemberAccount">
|
<update id="updateAdapayMemberAccount" parameterType="com.jsowell.pile.domain.AdapayMemberAccount">
|
||||||
update adapay_member_account
|
update adapay_member_account
|
||||||
<trim prefix="SET" suffixOverrides=",">
|
<trim prefix="SET" suffixOverrides=",">
|
||||||
|
<if test="status != null">status = #{status},</if>
|
||||||
<if test="merchantId != null">merchant_id = #{merchantId},</if>
|
<if test="merchantId != null">merchant_id = #{merchantId},</if>
|
||||||
<if test="adapayMemberId != null">adapay_member_id = #{adapayMemberId},</if>
|
<if test="adapayMemberId != null">adapay_member_id = #{adapayMemberId},</if>
|
||||||
<if test="settleAccountId != null">settle_account_id = #{settleAccountId},</if>
|
<if test="settleAccountId != null">settle_account_id = #{settleAccountId},</if>
|
||||||
|
|||||||
Reference in New Issue
Block a user