kongdeqiang
2023-12-18 05e0bb9b28295d1e80c6c47783e53d6879285198
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.boying.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.boying.entity.CostRule;
 
import java.text.ParseException;
import java.time.LocalDateTime;
import java.util.Date;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName CostRuleService.java
 * @Description TODO
 * @createTime 2022年11月20日 22:55:00
 */
public interface CostRuleService extends IService<CostRule> {
 
    double getMoney(Integer parkId, LocalDateTime startTime, LocalDateTime endTime, int isJun) throws ParseException;
}