提交 | 用户 | 时间
|
3205a2
|
1 |
package com.iailab.module.data.point.service; |
D |
2 |
|
|
3 |
import com.iailab.framework.common.service.BaseService; |
|
4 |
import com.iailab.module.data.point.entity.ArcPointSettingEntity; |
|
5 |
import com.iailab.module.data.point.entity.DaCumulatePointEntity; |
|
6 |
import org.springframework.stereotype.Service; |
|
7 |
|
|
8 |
import java.util.List; |
|
9 |
|
|
10 |
@Service |
|
11 |
public interface ArcPointSettingService extends BaseService<ArcPointSettingEntity> { |
|
12 |
|
|
13 |
List<ArcPointSettingEntity> getListByType(String code); |
|
14 |
} |