18 lines
477 B
Java
18 lines
477 B
Java
package net.srt.dao;
|
|
|
|
import net.srt.entity.StandardStopwatchEntity;
|
|
import net.srt.framework.mybatis.dao.BaseDao;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
/**
|
|
* @ClassName : StandardStopwatchDao
|
|
* @Description :
|
|
* @Author : FJJ
|
|
* @Date: 2023-12-24 10:33
|
|
*/
|
|
@Mapper
|
|
public interface StandardStopwatchDao extends BaseDao<StandardStopwatchEntity> {
|
|
void updateCodeNumByStandardId(@Param("standardId") Long standardId);
|
|
}
|