xuhy
2024-09-04 13f78b8116bb183f206a8ee80781146873b5bb1b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.integration.iotda.utils.tools;
 
import lombok.extern.slf4j.Slf4j;
 
import java.io.Serializable;
 
@Slf4j
public class StrategyUtil implements Serializable {
 
 
    /**
     * 校验计费模版是否准确
     * @return
     */
    public static boolean checkStrategy() {
        return true;
    }
 
}