Browse Source

后台代码优化 20210925_1

MSY 3 years ago
parent
commit
f86eeaa7b9

+ 1 - 0
src/main/java/com/jkcredit/invoice/credit/SimpleCORSFilter.java

@@ -85,6 +85,7 @@ public class SimpleCORSFilter implements Filter {
      */
     private final static String[] NO_TOKEN_API_PATHS ={
             "/**/favicon.ico",
+            "/favicon.ico",
             "/swagger-ui.html",
             "/webjars/**",
             "/webjars/springfox-swagger-ui/springfox.css",

+ 10 - 0
src/main/java/com/jkcredit/invoice/model/entity/CustomerRecharge.java

@@ -7,6 +7,8 @@ public class CustomerRecharge {
 
     private String customerName;
 
+    private Double beforeMony;
+
     private Double rechargeMony;
 
     private String rechargeTime;
@@ -27,6 +29,14 @@ public class CustomerRecharge {
         this.customerName = customerName == null ? null : customerName.trim();
     }
 
+    public Double getBeforeMony() {
+        return beforeMony;
+    }
+
+    public void setBeforeMony(Double beforeMony) {
+        this.beforeMony = beforeMony;
+    }
+
     public Double getRechargeMony() {
         return rechargeMony;
     }

+ 1 - 0
src/main/java/com/jkcredit/invoice/service/customer/impl/CustomerServiceImpl.java

@@ -63,6 +63,7 @@ public class CustomerServiceImpl extends ServiceImpl<CustomerMapper,Customer> im
         customer.setAccountBalance(MathUtil.add(customer.getAccountBalance(),customerRecharge.getRechargeMony()));
         customerMapper.updateByPrimaryKeySelective(customer);
         customerRecharge.setRechargeTime(DateUtil.getCurrentDateStr());
+        customerRecharge.setBeforeMony(customer.getAccountBalance());
         customerRechargeMapper.insert(customerRecharge);
         return true;
     }

+ 14 - 3
src/main/resources/mapper/customer/CustomerRechargeMapper.xml

@@ -4,11 +4,12 @@
   <resultMap id="BaseResultMap" type="com.jkcredit.invoice.model.entity.CustomerRecharge" >
     <id column="id" property="id" jdbcType="INTEGER" />
     <result column="customer_name" property="customerName" jdbcType="VARCHAR" />
+    <result column="before_money" property="beforeMony" jdbcType="DOUBLE" />
     <result column="recharge_mony" property="rechargeMony" jdbcType="DOUBLE" />
     <result column="recharge_time" property="rechargeTime" jdbcType="VARCHAR" />
   </resultMap>
   <sql id="Base_Column_List" >
-    id, customer_name, recharge_mony, recharge_time
+    id, customer_name, before_money, recharge_mony, recharge_time
   </sql>
   <select id="selectAllByPage" resultMap="BaseResultMap">
     select
@@ -26,9 +27,9 @@
     where id = #{id,jdbcType=INTEGER}
   </delete>
   <insert id="insert" parameterType="com.jkcredit.invoice.model.entity.CustomerRecharge" >
-    insert into t_customer_recharge ( customer_name, recharge_mony,
+    insert into t_customer_recharge ( customer_name, before_money,recharge_mony,
       recharge_time)
-    values ( #{customerName,jdbcType=VARCHAR}, #{rechargeMony,jdbcType=DOUBLE},
+    values ( #{customerName,jdbcType=VARCHAR}, #{beforeMony,jdbcType=DOUBLE}, #{rechargeMony,jdbcType=DOUBLE},
       #{rechargeTime,jdbcType=VARCHAR})
   </insert>
   <insert id="insertSelective" parameterType="com.jkcredit.invoice.model.entity.CustomerRecharge" >
@@ -40,6 +41,9 @@
       <if test="customerName != null" >
         customer_name,
       </if>
+      <if test="beforeMony != null" >
+        before_money,
+      </if>
       <if test="rechargeMony != null" >
         recharge_mony,
       </if>
@@ -54,6 +58,9 @@
       <if test="customerName != null" >
         #{customerName,jdbcType=VARCHAR},
       </if>
+      <if test="beforeMony != null" >
+        #{before_money,jdbcType=DOUBLE},
+      </if>
       <if test="rechargeMony != null" >
         #{rechargeMony,jdbcType=DOUBLE},
       </if>
@@ -68,6 +75,9 @@
       <if test="customerName != null" >
         customer_name = #{customerName,jdbcType=VARCHAR},
       </if>
+      <if test="beforeMony != null" >
+        before_money = #{beforeMony,jdbcType=DOUBLE},
+      </if>
       <if test="rechargeMony != null" >
         recharge_mony = #{rechargeMony,jdbcType=DOUBLE},
       </if>
@@ -80,6 +90,7 @@
   <update id="updateByPrimaryKey" parameterType="com.jkcredit.invoice.model.entity.CustomerRecharge" >
     update t_customer_recharge
     set customer_name = #{customerName,jdbcType=VARCHAR},
+      before_money = #{beforeMony,jdbcType=DOUBLE},
       recharge_mony = #{rechargeMony,jdbcType=DOUBLE},
       recharge_time = #{rechargeTime,jdbcType=VARCHAR}
     where id = #{id,jdbcType=INTEGER}