17 lines
407 B
Java
17 lines
407 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;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Description:
|
||
|
|
* Created by XuSan on 2024/9/23.
|
||
|
|
*
|
||
|
|
* @author XuSan
|
||
|
|
* @version 1.0
|
||
|
|
*/
|
||
|
|
public class PersonnelPlanService extends ServiceImpl<PersonnelPlanMapper, PersonnelPlan>
|
||
|
|
{
|
||
|
|
}
|