23 lines
615 B
Java
23 lines
615 B
Java
package com.gunshi.project.xyt.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.gunshi.project.xyt.mapper.PersonnelPlanMapper;
|
|
import com.gunshi.project.xyt.model.PersonnelPlan;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
/**
|
|
* Description:
|
|
* Created by XuSan on 2024/9/23.
|
|
*
|
|
* @author XuSan
|
|
* @version 1.0
|
|
*/
|
|
@Service
|
|
@Slf4j
|
|
@Transactional(rollbackFor = Exception.class)
|
|
public class PersonnelPlanService extends ServiceImpl<PersonnelPlanMapper, PersonnelPlan>
|
|
{
|
|
}
|