#
ytfl
2025-07-18 ed66b0b468efc3f1f51c68712d82e234c7bba2bf
1
2
3
4
5
6
7
8
9
10
package com.zy.asrs.service;
 
import com.zy.asrs.entity.WrkMastLog;
import com.baomidou.mybatisplus.service.IService;
 
public interface WrkMastLogService extends IService<WrkMastLog> {
 
    boolean save(Integer workNo);
 
}