瀏覽代碼

20220207_3后端日志更新代码_代码质量测试1-编译器自测修复

mashengyi 3 年之前
父節點
當前提交
7605808be4

+ 2 - 3
src/main/java/com/jkcredit/invoice/component/StatisRequestIdTimeComp.java

@@ -5,7 +5,6 @@ import org.springframework.stereotype.Component;
 
 import javax.annotation.PostConstruct;
 import javax.annotation.PreDestroy;
-import java.util.Date;
 import java.util.Map;
 import java.util.concurrent.ConcurrentHashMap;
 import java.util.concurrent.Executors;
@@ -35,7 +34,7 @@ public class StatisRequestIdTimeComp {
      * @param requestId
      */
     public void putReQuestIdAndTime(String requestId){
-        map.put(requestId,new Date().getTime());
+        map.put(requestId,System.currentTimeMillis());
     }
 
     /**
@@ -53,7 +52,7 @@ public class StatisRequestIdTimeComp {
             public void run() {
 
                 int count = 0;
-                long currTime = new Date().getTime();
+                long currTime = System.currentTimeMillis();
                 for(Map.Entry<String,Long> entry:map.entrySet()){
                     if(currTime-entry.getValue()>costTimeAtten*1000){
                         count++;

+ 1 - 0
src/main/java/com/jkcredit/invoice/mapper/Binvoce/BillInvoiceMapper.java

@@ -17,6 +17,7 @@ public interface BillInvoiceMapper extends BaseMapper<BillInvoice>{
 
     BillInvoice selectAllByPageByBillInvoice( BillInvoice record);
 
+    @Override
     int insert(BillInvoice record);
 
     int updateByPrimaryKey(BillInvoice record);

+ 1 - 0
src/main/java/com/jkcredit/invoice/mapper/Binvoce/SelfCarApplMapper.java

@@ -12,5 +12,6 @@ import java.util.List;
 public interface SelfCarApplMapper  extends BaseMapper<SelfCarAppl> {
     IPage<List<SelfCarAppl>> selectAllByPage(Page page, @Param("selfCarAppl") SelfCarAppl selfCarAppl);
     List<SelfCarAppl> selectAllNoRec();
+    @Override
     int insert(SelfCarAppl record);
 }

+ 1 - 0
src/main/java/com/jkcredit/invoice/mapper/Binvoce/SelfCarInvoiceMapper.java

@@ -13,6 +13,7 @@ import java.util.List;
 public interface SelfCarInvoiceMapper extends BaseMapper<SelfCarInvoice> {
     IPage<List<SelfCarInvoice>> selectAllByPage(Page page, @Param("selfCarInvoice") SelfCarInvoice selfCarInvoice);
 
+    @Override
     int insert(SelfCarInvoice record);
 
     int updateByPrimaryKey(SelfCarInvoice record);

+ 1 - 0
src/main/java/com/jkcredit/invoice/mapper/calculateInfor/NoCarCalculateInforMapper.java

@@ -15,6 +15,7 @@ import java.util.Map;
 public interface NoCarCalculateInforMapper extends BaseMapper<NoCarCalculateInfor> {
     IPage<List<NoCarCalculateInfor>> selectAllByPage(Page page, @Param("calculateInfor") NoCarCalculateInfor calculateInfor);
 
+    @Override
     int insert(NoCarCalculateInfor record);
 
     NoCarCalculateInfor selectByTradeId(String tradeId);

+ 1 - 0
src/main/java/com/jkcredit/invoice/mapper/calculateInfor/SelfCarCalculateInforMapper.java

@@ -16,6 +16,7 @@ import java.util.Map;
 public interface SelfCarCalculateInforMapper extends BaseMapper<SelfCarCalculateInfor> {
     IPage<List<SelfCarCalculateInfor>> selectAllByPage(Page page, @Param("calculateInfor") SelfCarCalculateInfor calculateInfor);
 
+    @Override
     int insert(SelfCarCalculateInfor record);
 
     SelfCarCalculateInfor selectByEtcAndTime(SelfCarCalculateInfor selfCarCalculateInfor);

+ 1 - 0
src/main/java/com/jkcredit/invoice/mapper/customer/CustomerCarRecMapper.java

@@ -14,6 +14,7 @@ import java.util.List;
 public interface CustomerCarRecMapper extends BaseMapper<CustomerCarRec> {
    // int deleteByPrimaryKey(String carNum);
 
+    @Override
     int insert(CustomerCarRec record);
 
     int insertSelective(CustomerCarRec record);

+ 1 - 0
src/main/java/com/jkcredit/invoice/mapper/customer/CustomerMapper.java

@@ -12,6 +12,7 @@ import java.util.List;
 public interface CustomerMapper extends BaseMapper<Customer> {
     int deleteByPrimaryKey(Integer id);
 
+    @Override
     int insert(Customer record);
 
     int insertSelective(Customer record);

+ 1 - 0
src/main/java/com/jkcredit/invoice/mapper/customer/CustomerOperMapper.java

@@ -16,5 +16,6 @@ public interface CustomerOperMapper extends BaseMapper<CustomerOper> {
 
     IPage<List<CustomerOper>> selectAllByPage(Page page, @Param("customerOper") CustomerOper customerOper);
 
+    @Override
     int insert(CustomerOper record);
 }

+ 1 - 0
src/main/java/com/jkcredit/invoice/mapper/customer/CustomerRecMapper.java

@@ -13,6 +13,7 @@ import java.util.List;
 public interface CustomerRecMapper extends BaseMapper<CustomerRec> {
     int deleteByPrimaryKey(Integer id);
 
+    @Override
     int insert(CustomerRec record);
     int updateByCompany(CustomerRec customerRec);
     int insertSelective(CustomerRec record);

+ 1 - 0
src/main/java/com/jkcredit/invoice/mapper/customer/CustomerRechargeMapper.java

@@ -18,6 +18,7 @@ public interface CustomerRechargeMapper extends BaseMapper<CustomerRecharge> {
 
     int deleteByPrimaryKey(Integer id);
 
+    @Override
     int insert(CustomerRecharge record);
 
     int insertSelective(CustomerRecharge record);

+ 1 - 0
src/main/java/com/jkcredit/invoice/mapper/waybill/NoCarWaybillMapper.java

@@ -17,6 +17,7 @@ public interface NoCarWaybillMapper extends BaseMapper<NoCarWayBill>{
 
     IPage<List<NoCarWayBill>> selectAllByPageException(Page page, @Param("noCarWayBill") NoCarWayBill noCarWayBill);
 
+    @Override
     int insert(NoCarWayBill record);
 
     int updateByPrimaryKey(NoCarWayBill record);

+ 1 - 0
src/main/java/com/jkcredit/invoice/mapper/waybill/SellCarTradeMapper.java

@@ -13,6 +13,7 @@ import java.util.List;
 public interface SellCarTradeMapper extends BaseMapper<SelfCarTrade> {
     IPage<List<SelfCarTrade>> selectAllByPage(Page page, @Param("sellCarTrade") SelfCarTrade sellCarTrade);
 
+    @Override
     int insert(SelfCarTrade record);
 
     int updateByPrimaryKey(SelfCarTrade record);

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

@@ -87,6 +87,7 @@ public class CustomerServiceImpl extends ServiceImpl<CustomerMapper,Customer> im
         log.info("充值结束:CustomerServiceImpl.customRecharge{}",customerRecharge);
         return true;
     }
+    @Override
     public RespR contractAdd(CustomerRec customerRec){
         log.info("开始上传协议:CustomerServiceImpl.contractAdd{}",customerRec);
         if(customerRec.getRecStatus().intValue() == 2){
@@ -124,6 +125,7 @@ public class CustomerServiceImpl extends ServiceImpl<CustomerMapper,Customer> im
         return new RespR(customerRec);
     }
 
+    @Override
     public RespR customeRec(CustomerRec customerRec){
         log.info("开始客户注册:CustomerServiceImpl.customeRec{}",customerRec);
         CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyReference(customerRec);

+ 1 - 0
src/main/java/com/jkcredit/invoice/service/lowerService/impl/SelfCarServiceLImpl.java

@@ -421,6 +421,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
         }
         return new RespR(respR.getData().getResult());
     }
+    @Override
     public RespR queryEtcInfo(EtcBindVo etcBindVo){
         log.info("获取etc信息:SelfCarServiceLImpl.queryEtcInfo{}",etcBindVo);
         StringBuffer res = new StringBuffer();

+ 2 - 1
src/main/java/com/jkcredit/invoice/service/nocar/impl/NoCarBillWayImportServiceImpl.java

@@ -26,7 +26,8 @@ public class NoCarBillWayImportServiceImpl extends ServiceImpl<NoCarWaybillImprt
     public IPage<List<NoCarWayBill>> findByPageAndWayBillException(Page page, NoCarWayBill noCarWayBill) {
         return noCarWaybillMapperImprt.selectAllByPageException(page,noCarWayBill);
     }
-    public void updateBillway(int status,String msg,NoCarWayBill noCarWayBill){
+    @Override
+    public void updateBillway(int status, String msg, NoCarWayBill noCarWayBill){
         noCarWayBill.setFailReason(msg);
         noCarWayBill.setBillwayStatus(status);
         noCarWaybillMapperImprt.updateByBillNum(noCarWayBill);