| | |
| | | package com.aps.core.service.impl; |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.aps.common.core.utils.DateUtils; |
| | | import com.aps.common.core.utils.uuid.IdUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import com.aps.core.mapper.ApsPartPlanTempMapper; |
| | |
| | | @Override |
| | | public int insertApsPartPlanTemp(ApsPartPlanTemp apsPartPlanTemp) |
| | | { |
| | | apsPartPlanTemp.setId(IdUtils.fastUUID()); |
| | | apsPartPlanTemp.setCreateTime(DateUtils.getNowDate()); |
| | | return apsPartPlanTempMapper.insertApsPartPlanTemp(apsPartPlanTemp); |
| | | } |
| | | |