Junjie
2 天以前 f04ad2c10e57c0e03bf0f33e015e363bb7111c66
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.asrs.entity.WrkMastLog;
 
public interface WrkMastLogService extends IService<WrkMastLog> {
 
    boolean save(Integer wrkNo);
 
    WrkMastLog saveRecord(Integer wrkNo);
 
}