用户的打卡统计
parent
ddbe949363
commit
3f2a9fe314
@ -1,14 +1,19 @@
|
|||||||
package com.flossom.miniProgram.service;
|
package com.flossom.miniProgram.service;
|
||||||
|
|
||||||
|
import com.flossom.common.core.domain.entity.WxClockLog;
|
||||||
import com.flossom.common.core.domain.req.WxClockLogReq;
|
import com.flossom.common.core.domain.req.WxClockLogReq;
|
||||||
import com.flossom.common.core.domain.ret.WxClockLogRet;
|
import com.flossom.common.core.domain.ret.WxClockLogRet;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
public interface IWxClockLogService {
|
public interface IWxClockLogService {
|
||||||
|
|
||||||
public void insertWxClockLog(WxClockLogReq wxClockLogReq);
|
public void insertWxClockLog(WxClockLogReq wxClockLogReq);
|
||||||
|
|
||||||
void addClockInstrument(Long instrumentId);
|
void addClockInstrument(Long instrumentId);
|
||||||
|
|
||||||
WxClockLogRet getClockByUserId();
|
WxClockLogRet latestClockRecord();
|
||||||
|
|
||||||
|
List<WxClockLogRet> selectWxClockLogList();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue