lsh
2026-04-21 720e0926fa1c94b952c26e111206c5d6e1ed5ba2
1
2
3
4
5
6
7
8
9
10
11
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);
}