xiaoyong931011
2022-08-15 bedf764eeb15cfc0d5c5d297a32e0fdbbd1f60d5
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);
}