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 { void updateCodeNumByStandardId(@Param("standardId") Long standardId); }