package com.by4cloud.platformx.business.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.by4cloud.platformx.business.entity.OutBound;
|
import com.by4cloud.platformx.business.mapper.OutBoundMapper;
|
import com.by4cloud.platformx.business.service.OutBoundService;
|
import org.springframework.stereotype.Service;
|
|
import java.util.Date;
|
|
/**
|
* EPR出库记录
|
*
|
* @author syt
|
* @date 2026-04-29 11:32:05
|
*/
|
@Service
|
public class OutBoundServiceImpl extends ServiceImpl<OutBoundMapper, OutBound> implements OutBoundService {
|
|
@Override
|
public boolean save(OutBound entity) {
|
entity.setOutBoundTime(new Date());
|
return super.save(entity);
|
}
|
}
|