shiyunteng
7 天以前 db12bb4a131e547d4d0b6e3fae33faba5465974d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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);
    }
}