chen.llin
4 天以前 2ea1c479596a2b5417319de0d230d79040491c0a
1
2
3
4
5
6
7
8
9
10
11
package com.zy.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.entity.BasDevpErrLog;
 
public interface BasDevpErrLogService extends IService<BasDevpErrLog> {
 
    BasDevpErrLog findLatestByTaskNo(Integer sourceStaNo, Integer taskNo);
 
    BasDevpErrLog findLatest(Integer sourceStaNo);
}