1
zhang
4 天以前 1b6c512c4b251e7131a9b78e6f4ecb3a7d0a31a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.WrkLastno;
 
public interface WrkLastnoService extends IService<WrkLastno> {
 
    /**
     * 获取某个类型的下一个工作号
     *
     * @param type
     * @return
     */
    int nextWorkNo(Integer type);
}