commit | author | age | ||
a18bfa | 1 | package com.changhong.epc.parsing.mapper.centen; |
Z | 2 | |
3 | import org.apache.ibatis.annotations.Param; | |
4 | import org.apache.ibatis.annotations.Select; | |
5 | ||
6 | public interface AutoIDMapper { | |
7 | ||
8 | @Select("select autoID(#{fieldKey}, {tenantId})") | |
9 | Integer getAutoID(@Param("fieldKey") String fieldKey); | |
10 | ||
11 | } |