1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.java110.base.smo;
|
| import com.alibaba.fastjson.JSONObject;
|
| /**
| * 用户信息管理,服务
| * Created by wuxw on 2017/4/5.
| */
| public interface IPrimaryKeyServiceSMO {
|
| /**
| * 根据sequence 表中name 查询ID
| *
| * @param primaryKeyInfo name信息封装
| * @return
| */
| public JSONObject queryPrimaryKey(JSONObject primaryKeyInfo) throws Exception;
| }
|
|