package com.changhong.epc.admin.mapper.centen;
|
|
import org.apache.ibatis.annotations.Param;
|
import org.apache.ibatis.annotations.Select;
|
|
public interface AutoIDMapper {
|
|
@Select("select autoID(#{fieldKey}, {tenantId})")
|
Integer getAutoID(@Param("fieldKey") String fieldKey);
|
|
}
|