package com.moral.api.service.impl;
|
|
import com.moral.api.entity.Organization;
|
import com.moral.api.mapper.OrganizationMapper;
|
import com.moral.api.service.OrganizationService;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* <p>
|
* 组织表 服务实现类
|
* </p>
|
*
|
* @author moral
|
* @since 2021-04-06
|
*/
|
@Service
|
public class OrganizationServiceImpl extends ServiceImpl<OrganizationMapper, Organization> implements OrganizationService {
|
|
}
|