Newer
Older
huludao / src / main / java / com / newfiber / api / pc / service / impl / AcceptSupServiceImpl.java
@新烽开发者 新烽开发者 on 19 Jul 637 bytes init
package com.newfiber.api.pc.service.impl;

import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.newfiber.api.pc.dao.AcceptSupMapper;
import com.newfiber.api.pc.model.meet.AcceptSup;
import com.newfiber.api.pc.service.AcceptSupService;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

/**
 * 接收物资暂存表业务层
 * @Author:zhz
 * @CreateDate:2020/12/1 14:50
 * @Description:
 */
@Service
@Transactional(rollbackFor = Exception.class)
public class AcceptSupServiceImpl extends ServiceImpl<AcceptSupMapper,AcceptSup> implements AcceptSupService {
}