package com.zy.asrs.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.zy.asrs.entity.WrkLastno;
|
|
public interface WrkLastnoService extends IService<WrkLastno> {
|
|
WrkLastno selectByWrkMkForUpdate(Integer wrkMk);
|
|
int allocateNextWorkNo(Integer wrkMk);
|
}
|