admin
2024-01-23 81da61b828e29b7745e1382dfbbaeb685dc083ef
fanli/src/main/java/com/yeshi/fanli/service/inter/user/integral/UserGetIntegralFromOrderRecordService.java
@@ -1,24 +1,24 @@
package com.yeshi.fanli.service.inter.user.integral;
import com.yeshi.fanli.entity.integral.UserGetIntegralFromOrderRecord;
import com.yeshi.fanli.exception.integral.UserGetIntegralFromOrderRecordException;
public interface UserGetIntegralFromOrderRecordService {
   /**
    * 根据事件类型,用户,订单信息检索
    * @param eventType
    * @param uid
    * @param orderNo
    * @param orderSourceType
    * @return
    */
   public long countByEventTypeAndUidAndOrderInfo(int eventType, Long uid, String orderNo, int orderSourceType);
   /**
    *
    * @param record
    */
   public void addRecord(UserGetIntegralFromOrderRecord record) throws UserGetIntegralFromOrderRecordException;
}
package com.yeshi.fanli.service.inter.user.integral;
import com.yeshi.fanli.entity.integral.UserGetIntegralFromOrderRecord;
import com.yeshi.fanli.exception.integral.UserGetIntegralFromOrderRecordException;
public interface UserGetIntegralFromOrderRecordService {
   /**
    * 根据事件类型,用户,订单信息检索
    * @param eventType
    * @param uid
    * @param orderNo
    * @param orderSourceType
    * @return
    */
   public long countByEventTypeAndUidAndOrderInfo(int eventType, Long uid, String orderNo, int orderSourceType);
   /**
    *
    * @param record
    */
   public void addRecord(UserGetIntegralFromOrderRecord record) throws UserGetIntegralFromOrderRecordException;
}