1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.jsh.erp.datasource.mappers;
|
| import org.apache.ibatis.annotations.Param;
|
| public interface SequenceMapperEx {
|
| void updateBuildOnlyNumber();
|
| /**
| * 获得一个全局唯一的数作为订单号的追加
| * */
| Long getBuildOnlyNumber(@Param("seq_name") String seq_name);
| }
|
|