|
@@ -16,14 +16,40 @@
|
|
|
<result column="company" property="company" jdbcType="VARCHAR" />
|
|
|
<result column="fee" property="fee" jdbcType="DOUBLE" />
|
|
|
</resultMap>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <resultMap id="BaseResultMapByAppKeyAndAppSecret" type="com.jkcredit.invoice.model.entity.customer.Customer" >
|
|
|
+ <id column="id" property="id" jdbcType="INTEGER" />
|
|
|
+ <result column="customer_name" property="customerName" jdbcType="VARCHAR" />
|
|
|
+ <result column="app_secret" property="appSecret" jdbcType="VARCHAR" />
|
|
|
+ <result column="invoice_time" property="invoiceTime" jdbcType="VARCHAR" />
|
|
|
+ <result column="usenum_all" property="usenumAll" jdbcType="INTEGER" />
|
|
|
+ <result column="usenum_interface" property="usenumInterface" jdbcType="INTEGER" />
|
|
|
+ <result column="usenum_plat" property="usenumPlat" jdbcType="INTEGER" />
|
|
|
+ <result column="account_balance" property="accountBalance" jdbcType="DOUBLE" />
|
|
|
+ <result column="bussiness_type" property="bussinessType" jdbcType="INTEGER" />
|
|
|
+ <result column="integration_type" property="integrationType" jdbcType="INTEGER" />
|
|
|
+ <result column="first_sign" property="firstSign" jdbcType="VARCHAR" />
|
|
|
+ <result column="accStatus" property="accstatus" jdbcType="INTEGER" />
|
|
|
+ <result column="company" property="company" jdbcType="VARCHAR" />
|
|
|
+ <result column="fee" property="fee" jdbcType="DOUBLE" />
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+
|
|
|
<sql id="Base_Column_List" >
|
|
|
id, customer_name, invoice_time, usenum_all, usenum_interface, usenum_plat, account_balance,
|
|
|
bussiness_type, integration_type, first_sign, accStatus, company,fee
|
|
|
</sql>
|
|
|
|
|
|
+ <sql id="Base_Column_List_app_secret" >
|
|
|
+ id, app_secret, customer_name, invoice_time, usenum_all, usenum_interface, usenum_plat, account_balance,
|
|
|
+ bussiness_type, integration_type, first_sign, accStatus, company,fee
|
|
|
+ </sql>
|
|
|
+
|
|
|
<select id="selectAllByPage" resultMap="BaseResultMap">
|
|
|
select
|
|
|
- <include refid="Base_Column_List" />
|
|
|
+ <include refid="Base_Column_List_app_secret" />
|
|
|
from t_customer
|
|
|
</select>
|
|
|
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
|
|
@@ -43,12 +69,12 @@
|
|
|
where id = #{id,jdbcType=INTEGER}
|
|
|
</delete>
|
|
|
<insert id="insert" parameterType="com.jkcredit.invoice.model.entity.customer.Customer" >
|
|
|
- insert into t_customer (customer_name, invoice_time,
|
|
|
+ insert into t_customer (app_secret, customer_name, invoice_time,
|
|
|
usenum_all, usenum_interface, usenum_plat,
|
|
|
account_balance, bussiness_type, integration_type,
|
|
|
first_sign, accStatus, company,fee
|
|
|
)
|
|
|
- values ( #{customerName,jdbcType=VARCHAR}, #{invoiceTime,jdbcType=TIMESTAMP},
|
|
|
+ values ( #{appSecret,jdbcType=VARCHAR},#{customerName,jdbcType=VARCHAR}, #{invoiceTime,jdbcType=TIMESTAMP},
|
|
|
#{usenumAll,jdbcType=INTEGER}, #{usenumInterface,jdbcType=INTEGER}, #{usenumPlat,jdbcType=INTEGER},
|
|
|
#{accountBalance,jdbcType=DOUBLE}, #{bussinessType,jdbcType=INTEGER}, #{integrationType,jdbcType=INTEGER},
|
|
|
#{firstSign,jdbcType=VARCHAR}, #{accstatus,jdbcType=INTEGER}, #{company,jdbcType=VARCHAR},#{fee,jdbcType=DOUBLE}
|
|
@@ -197,4 +223,16 @@
|
|
|
fee = #{fee,jdbcType=DOUBLE}
|
|
|
where id = #{id,jdbcType=INTEGER}
|
|
|
</update>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <select id="selectByAppKeyAndAppSecret" resultMap="BaseResultMapByAppKeyAndAppSecret" parameterType="java.lang.String" >
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List_app_secret" />
|
|
|
+ from t_customer
|
|
|
+ where customer_name = #{customerName,jdbcType=VARCHAR}
|
|
|
+ and app_secret = #{appSecret,jdbcType=VARCHAR}
|
|
|
+ </select>
|
|
|
+
|
|
|
</mapper>
|