17 lines
528 B
Java
17 lines
528 B
Java
package com.zioinfo.mes.process;
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
@Mapper
|
|
public interface ProcessMapper {
|
|
List<MesProcessProgress> findByWorkorder(@Param("workorderId") Long workorderId);
|
|
List<MesProcessProgress> findRunning();
|
|
MesProcessProgress findById(@Param("id") Long id);
|
|
int insert(MesProcessProgress p);
|
|
int update(MesProcessProgress p);
|
|
int updateStatus(@Param("id") Long id, @Param("status") String status);
|
|
}
|