edu/server/like-generator/src/main/resources/java/mapper.java.vm

13 lines
283 B
Plaintext
Raw Normal View History

2022-06-15 06:21:31 +00:00
package com.hxkj.common.mapper;
import com.hxkj.common.core.basics.IBaseMapper;
import com.hxkj.common.entity.${entityName};
import org.apache.ibatis.annotations.Mapper;
/**
2022-06-15 09:14:20 +00:00
* ${functionName}
2022-06-15 06:21:31 +00:00
*/
@Mapper
public interface ${entityName}Mapper extends IBaseMapper<${entityName}> {
}