18 lines
493 B
Java
18 lines
493 B
Java
package com.gxwebsoft.enterprise.service.impl;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.gxwebsoft.enterprise.entity.Enterprise;
|
|
import com.gxwebsoft.enterprise.mapper.EnterpriseMapper;
|
|
import com.gxwebsoft.enterprise.service.EnterpriseService;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
/**
|
|
*
|
|
* @author GIIT-YC
|
|
*
|
|
*/
|
|
@Service
|
|
public class EnterpriseServiceImpl extends ServiceImpl<EnterpriseMapper, Enterprise> implements EnterpriseService {
|
|
|
|
}
|