13 lines
354 B
Java
13 lines
354 B
Java
|
|
package com.nis.web.service.systemService;
|
||
|
|
|
||
|
|
import org.springframework.stereotype.Service;
|
||
|
|
|
||
|
|
import com.nis.domain.SystemServiceInfo;
|
||
|
|
import com.nis.web.dao.systemService.SystemServiceInfoDao;
|
||
|
|
import com.nis.web.service.CrudService;
|
||
|
|
|
||
|
|
@Service
|
||
|
|
public class SystemServiceService extends CrudService<SystemServiceInfoDao, SystemServiceInfo>{
|
||
|
|
|
||
|
|
}
|