去除资质审核表中的数据来源字段
This commit is contained in:
@@ -8,7 +8,6 @@
|
|||||||
<result column="partner_interview_id" jdbcType="BIGINT" property="partnerInterviewId" />
|
<result column="partner_interview_id" jdbcType="BIGINT" property="partnerInterviewId" />
|
||||||
<result column="partnership" jdbcType="VARCHAR" property="partnership" />
|
<result column="partnership" jdbcType="VARCHAR" property="partnership" />
|
||||||
<result column="want_sign_time" jdbcType="TIMESTAMP" property="wantSignTime" />
|
<result column="want_sign_time" jdbcType="TIMESTAMP" property="wantSignTime" />
|
||||||
<result column="data_source" jdbcType="TINYINT" property="dataSource" />
|
|
||||||
<result column="partner_fee" jdbcType="VARCHAR" property="partnerFee" />
|
<result column="partner_fee" jdbcType="VARCHAR" property="partnerFee" />
|
||||||
<result column="security_fund" jdbcType="VARCHAR" property="securityFund" />
|
<result column="security_fund" jdbcType="VARCHAR" property="securityFund" />
|
||||||
<result column="technical_service_fee" jdbcType="VARCHAR" property="technicalServiceFee" />
|
<result column="technical_service_fee" jdbcType="VARCHAR" property="technicalServiceFee" />
|
||||||
@@ -26,7 +25,7 @@
|
|||||||
</resultMap>
|
</resultMap>
|
||||||
<sql id="Base_Column_List">
|
<sql id="Base_Column_List">
|
||||||
id, partner_id, partner_line_id, partner_interview_id, partnership, want_sign_time,
|
id, partner_id, partner_line_id, partner_interview_id, partnership, want_sign_time,
|
||||||
data_source, partner_fee, security_fund, technical_service_fee, intention_money,
|
partner_fee, security_fund, technical_service_fee, intention_money,
|
||||||
intention_signer_username, intention_signer_mobile, intention_edu, real_control_username,
|
intention_signer_username, intention_signer_mobile, intention_edu, real_control_username,
|
||||||
real_control_idcard, signer_real_control_relation, signer_other_real_control_relation,
|
real_control_idcard, signer_real_control_relation, signer_other_real_control_relation,
|
||||||
signer_real_control_relation_cert, create_time, update_time
|
signer_real_control_relation_cert, create_time, update_time
|
||||||
@@ -49,9 +48,6 @@
|
|||||||
<if test="record.wantSignTime != null">
|
<if test="record.wantSignTime != null">
|
||||||
want_sign_time,
|
want_sign_time,
|
||||||
</if>
|
</if>
|
||||||
<if test="record.dataSource != null">
|
|
||||||
data_source,
|
|
||||||
</if>
|
|
||||||
<if test="record.partnerFee != null">
|
<if test="record.partnerFee != null">
|
||||||
partner_fee,
|
partner_fee,
|
||||||
</if>
|
</if>
|
||||||
@@ -176,9 +172,6 @@
|
|||||||
<if test="record.wantSignTime != null">
|
<if test="record.wantSignTime != null">
|
||||||
want_sign_time = #{record.wantSignTime},
|
want_sign_time = #{record.wantSignTime},
|
||||||
</if>
|
</if>
|
||||||
<if test="record.dataSource != null">
|
|
||||||
data_source = #{record.dataSource},
|
|
||||||
</if>
|
|
||||||
<if test="record.partnerFee != null">
|
<if test="record.partnerFee != null">
|
||||||
partner_fee = #{record.partnerFee},
|
partner_fee = #{record.partnerFee},
|
||||||
</if>
|
</if>
|
||||||
|
|||||||
@@ -36,9 +36,6 @@ public class HyPartnerCertificationInfoDO implements Serializable {
|
|||||||
@ApiModelProperty("意向签约时间")
|
@ApiModelProperty("意向签约时间")
|
||||||
private Date wantSignTime;
|
private Date wantSignTime;
|
||||||
|
|
||||||
@ApiModelProperty("数据来源")
|
|
||||||
private Integer dataSource;
|
|
||||||
|
|
||||||
@ApiModelProperty("加盟费")
|
@ApiModelProperty("加盟费")
|
||||||
private String partnerFee;
|
private String partnerFee;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user