#
Junjie
2025-04-22 cb511f2be8a0a2479cd9c28244dac031823652b0
1
2
3
4
5
6
7
8
9
10
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.WrkMastLog;
 
public interface WrkMastLogService extends IService<WrkMastLog> {
 
    boolean save(Integer wrkNo);
 
}