xiaoyong931011
2023-04-13 d58c3c67dfae70e3a0490b982fd96ee32ddd0a86
1
2
3
4
5
6
7
8
9
10
11
12
13
package cc.mrbird.febs.mall.service;
 
import cc.mrbird.febs.mall.entity.MallScoreSignRecord;
import cc.mrbird.febs.mall.vo.ScoreSignVo;
 
public interface IScoreService {
 
    ScoreSignVo scoreSign();
 
    void sign();
 
    MallScoreSignRecord judgeScoreIsContinuity(MallScoreSignRecord mallScoreSignRecord);
}