zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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 }