You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hyp-web/hyp-system/src/main/java/com/hyp/system/mapper/RewFileRelationMapper.java

22 lines
462 B

package com.hyp.system.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.hyp.system.domain.RewFileRelation;
import org.apache.ibatis.annotations.Mapper;
/**
* @author 13560
* @description 针对表【rew_file_relation(奖项文件表)】的数据库操作Mapper
* @createDate 2024-04-11 09:17:57
* @Entity generator.domain.RewFileRelation
*/
@Mapper
public interface RewFileRelationMapper extends BaseMapper<RewFileRelation> {
}