package com.nis.web.service.restful; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.nis.domain.restful.SystemFunStatus; import com.nis.web.dao.SystemFunStatusDao; import com.nis.web.service.CrudService; @Service public class SystemFunStatusService extends CrudService { @Autowired public SystemFunStatusDao systemFunStatusDao; public void saveSystemFunStatusBatch(List entity) { super.saveBatch(entity, SystemFunStatusDao.class); } public void updateSystemFunStatusBatch(List entity) { super.updateBatch(entity, SystemFunStatusDao.class); } }