删除静控接口

This commit is contained in:
zhangdongxu
2017-12-22 15:35:56 +08:00
parent ed111ec4b8
commit caa9503c86
31 changed files with 0 additions and 3019 deletions

View File

@@ -1,50 +0,0 @@
/**
*@Title: DmbCkService.java
*@Package com.nis.web.service.restful
*@Description TODO
*@author wx
*@date 2016年9月7日 下午3:28:44
*@version 版本号
*/
package com.nis.web.service.restful.jk;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.nis.domain.restful.jk.JkDmbCk;
import com.nis.web.dao.jk.JkDmbCkDao;
import com.nis.web.service.CrudService;
/**
* @ClassName: DmbCkService.java
* @Description: TODO
* @author (wx)
* @date 2016年9月7日 下午3:28:44
* @version V1.0
*/
@Service
public class JkDmbCkService extends CrudService<JkDmbCkDao, JkDmbCk> {
@Autowired
public JkDmbCkDao jkDmbCkDao;
public JkDmbCk findById(long id) {
return get(id);
}
public void saveDmbCkBatch(List<JkDmbCk> entity) {
// TODO Auto-generated method stub
super.saveBatch(entity,JkDmbCkDao.class);
}
public void updateDmbCkBatch(List<JkDmbCk> entity) {
// TODO Auto-generated method stub
super.updateBatch(entity, JkDmbCkDao.class);
}
public void removeDmbCk(long id) {
jkDmbCkDao.delete(id);
}
public void removeDmbCkBatch(List<JkDmbCk> entity) {
super.deleteBatch(entity, JkDmbCkDao.class);
}
}

View File

@@ -1,51 +0,0 @@
/**
*@Title: JkFdZbService.java
*@Package com.nis.web.service.restful
*@Description TODO
*@author wx
*@date 2016年9月7日 下午3:28:44
*@version 版本号
*/
package com.nis.web.service.restful.jk;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.nis.domain.Page;
import com.nis.domain.restful.jk.JkFdZb;
import com.nis.web.dao.jk.JkFdZbDao;
import com.nis.web.service.CrudService;
/**
* @ClassName: JkFdZbService.java
* @Description: TODO
* @author (DDM)
* @date 2016年10月19日 下午21:28:44
* @version V1.0
*/
@Service
public class JkFdZbService extends CrudService<JkFdZbDao, JkFdZb> {
@Autowired
public JkFdZbDao dmbCkDao;
public Page<JkFdZb> getJkFdZb(Page<JkFdZb> page, JkFdZb entity) {
return findPage(page, entity);
}
public JkFdZb findById(long zbId) {
return get(zbId);
}
public void saveJkFdZbBatch(List<JkFdZb> entity) {
super.saveBatch(entity,JkFdZbDao.class);
}
public void updateJkFdZbBatch(List<JkFdZb> entity) {
super.updateBatch(entity, JkFdZbDao.class);
}
public void removeJkFdZb(long zbId) {
dmbCkDao.delete(zbId);
}
public void removeJkFdZbBatch(List<JkFdZb> entity) {
super.deleteBatch(entity, JkFdZbDao.class);
}
}

View File

@@ -1,44 +0,0 @@
/**
*@Title: JkFfjInfoService.java
*@Package com.nis.web.service.restful
*@Description TODO
*@author (zbc)
*@date 2016年10月19日 下午20:04:16
*@version 版本号
*/
package com.nis.web.service.restful.jk;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.nis.domain.Page;
import com.nis.domain.restful.jk.JkFdZb;
import com.nis.domain.restful.jk.JkFfjInfo;
import com.nis.web.dao.jk.JkFdZbDao;
import com.nis.web.dao.jk.JkFfjInfoDao;
import com.nis.web.service.CrudService;
/**
* @ClassName: JkFfjInfoService.java
* @Description: TODO
* @author (zbc)
* @date 2016年10月19日 下午20:04:16
* @version V1.0
*/
@Service
public class JkFfjInfoService extends CrudService<JkFfjInfoDao, JkFfjInfo> {
@Autowired
public JkFfjInfoDao jkFfjInfoDao;
public void saveJkFfjBatch(List<JkFfjInfo> entity) {
super.saveBatch(entity, JkFfjInfoDao.class);
}
public void updateJkFfjBatch(List<JkFfjInfo> entity) {
super.updateBatch(entity, JkFfjInfoDao.class);
}
}

View File

@@ -1,42 +0,0 @@
/**
*@Title: JkFfjInfoService.java
*@Package com.nis.web.service.restful
*@Description TODO
*@author (zbc)
*@date 2016年10月19日 下午20:04:16
*@version 版本号
*/
package com.nis.web.service.restful.jk;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.nis.domain.restful.jk.JkFwqInfo;
import com.nis.web.dao.jk.JkFwqInfoDao;
import com.nis.web.service.CrudService;
/**
* @ClassName: JkFfjInfoService.java
* @Description: TODO
* @author (zbc)
* @date 2016年10月19日 下午20:04:16
* @version V1.0
*/
@Service
public class JkFwqInfoService extends CrudService<JkFwqInfoDao, JkFwqInfo> {
@Autowired
public JkFwqInfoDao jkFwqInfoDao;
public void savejkFwqInfoBatch(List<JkFwqInfo> entity) {
super.saveBatch(entity, JkFwqInfoDao.class);
}
public void updatejkFwqInfoBatch(List<JkFwqInfo> entity) {
super.updateBatch(entity, JkFwqInfoDao.class);
}
}

View File

@@ -1,50 +0,0 @@
/**
*@Title: JkLyqService.java
*@Package com.nis.web.service.restful
*@Description TODO
*@author wx
*@date 2016年9月7日 下午3:28:44
*@version 版本号
*/
package com.nis.web.service.restful.jk;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.nis.domain.restful.jk.JkLyq;
import com.nis.web.dao.jk.JkLyqDao;
import com.nis.web.service.CrudService;
import com.nis.web.service.SaveRequestLogThread;
/**
* @ClassName: JkLyqService.java
* @Description: TODO
* @author (wx)
* @date 2016年9月7日 下午3:28:44
* @version V1.0
*/
@Service
public class JkLyqService extends CrudService<JkLyqDao, JkLyq> {
@Autowired
public JkLyqDao jkLyqDao;
public JkLyq findById(long id) {
return get(id);
}
public void saveJkLyqBatch(List<JkLyq> entity) {
// TODO Auto-generated method stub
super.saveBatch(entity,JkLyqDao.class);
}
public void updateJkLyqBatch(List<JkLyq> entity) {
// TODO Auto-generated method stub
super.updateBatch(entity, JkLyqDao.class);
}
public void removeJkLyq(long id) {
jkLyqDao.delete(id);
}
public void removeJkLyqBatch(List<JkLyq> entity) {
super.deleteBatch(entity, JkLyqDao.class);
}
}