This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
k18-ntcs-web-argus-service/src/main/java/com/nis/web/service/restful/SystemFunStatusService.java
zhangdongxu 13acafd43d 上传代码
2017-12-19 14:55:52 +08:00

27 lines
757 B
Java

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<SystemFunStatusDao, SystemFunStatus> {
@Autowired
public SystemFunStatusDao systemFunStatusDao;
public void saveSystemFunStatusBatch(List<SystemFunStatus> entity) {
super.saveBatch(entity, SystemFunStatusDao.class);
}
public void updateSystemFunStatusBatch(List<SystemFunStatus> entity) {
super.updateBatch(entity, SystemFunStatusDao.class);
}
}