forked from I3-YF/i3plus-mes-pcn-yfai
jx pcn takt collect
parent
9d5600f548
commit
9d81c7d6ec
@ -0,0 +1,27 @@
|
|||||||
|
package cn.estsh.i3plus.ext.mes.pcn.apiservice.serviceimpl.busi.jx;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.ext.mes.pcn.api.busi.jx.IJxWorkCellTaktCollectRecordService;
|
||||||
|
import cn.estsh.i3plus.ext.mes.pcn.pojo.bean.SxWorkCellTaktCollectRecord;
|
||||||
|
import cn.estsh.i3plus.ext.mes.pcn.pojo.repository.SxWorkCellTaktCollectRecordRepository;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author: wangjie
|
||||||
|
* @CreateDate: 2021/01/18 11:41 上午
|
||||||
|
* @Description:
|
||||||
|
**/
|
||||||
|
@Slf4j
|
||||||
|
@Service
|
||||||
|
public class JxWorkCellTaktCollectRecordService implements IJxWorkCellTaktCollectRecordService {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private SxWorkCellTaktCollectRecordRepository workCellTaktCollectRecordRepository;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void insertWorkCellTaktCollectRecordNoRollback(SxWorkCellTaktCollectRecord workCellTaktCollectRecord) {
|
||||||
|
workCellTaktCollectRecordRepository.insert(workCellTaktCollectRecord);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue