|
@ -0,0 +1,35 @@
|
|
|
|
package com.yihu.wlyy.service.synergy;/**
|
|
|
|
* Created by nature of king on 2018/10/9.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import com.yihu.wlyy.entity.synergy.ManageSynergyWorkorderServicerLogDO;
|
|
|
|
import com.yihu.wlyy.repository.synergy.ManageSynergyWorkorderServicerLogDao;
|
|
|
|
import com.yihu.wlyy.util.query.BaseJpaService;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author wangzhinan
|
|
|
|
* @create 2018-10-09 15:58
|
|
|
|
* @desc 协同服务处理操作日志
|
|
|
|
**/
|
|
|
|
@Service
|
|
|
|
@Transactional
|
|
|
|
public class SynergyWorkorderServicerLogService extends BaseJpaService {
|
|
|
|
@Autowired
|
|
|
|
private ManageSynergyWorkorderServicerLogDao manageSynergyWorkorderServicerLogDao;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 添加协同服务处理操作日志
|
|
|
|
*
|
|
|
|
* @param synergyWorkorderServicerLogDO
|
|
|
|
*/
|
|
|
|
public void create(ManageSynergyWorkorderServicerLogDO synergyWorkorderServicerLogDO){
|
|
|
|
synergyWorkorderServicerLogDO.setCreateTime(new Date());
|
|
|
|
manageSynergyWorkorderServicerLogDao.save(synergyWorkorderServicerLogDO);
|
|
|
|
}
|
|
|
|
}
|