IntegralRuleService.java 295 B

1234567891011121314
  1. package com.platform.yijia.service;
  2. import com.platform.yijia.pojo.IntegralRule;
  3. import com.platform.yijia.pojo.IntegralWares;
  4. import java.util.List;
  5. public interface IntegralRuleService {
  6. //获取油站积分规则
  7. List<IntegralRule> getIntegralRule(IntegralRule integralRule);
  8. }