30 lines
618 B
Java
30 lines
618 B
Java
package com.veve_plus.root.mapper;
|
|
|
|
import com.veve_plus.root.dto.code.CodeDto;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* The type Code Mapper.
|
|
*
|
|
* @author : SG.Yesterme
|
|
* @version : 1.0.0
|
|
* @date : 2024. 8. 23.
|
|
*/
|
|
@Mapper
|
|
public interface CodeMapper {
|
|
|
|
/**
|
|
* Update title by idx.
|
|
*
|
|
* @param groupId the group id
|
|
* @param lang the lang
|
|
* @return the int
|
|
*/
|
|
List<CodeDto> findCodesByGroupId(@Param("groupId") String groupId,
|
|
@Param("lang") String lang);
|
|
|
|
}
|