package com.fzzy.whjl.view.pr;
|
|
import com.bstek.dorado.annotation.DataProvider;
|
import com.bstek.dorado.annotation.DataResolver;
|
import com.bstek.dorado.annotation.Expose;
|
import com.fzzy.whjl.dto.WhjlApi1103;
|
import org.springframework.stereotype.Component;
|
|
import java.util.List;
|
|
/**
|
* 军工人员信息
|
*
|
* @Author:YAN
|
*/
|
@Component
|
public class WhjlApi1103PR {
|
/**
|
* 获取列表信息
|
* whjlApi1103PR#listData
|
*
|
* @return
|
*/
|
@DataProvider
|
public List<WhjlApi1103> listData() {
|
return null;
|
}
|
|
/**
|
* 更新或修改
|
* whjlApi1103PR#saveData
|
*
|
* @param data
|
* @return
|
*/
|
@DataResolver
|
public String saveData(WhjlApi1103 data) {
|
return null;
|
}
|
|
/**
|
* 删除
|
* whjlApi1103PR#delData
|
*
|
* @param data
|
* @return
|
*/
|
@Expose
|
public String delData(WhjlApi1103 data) {
|
return null;
|
}
|
|
/**
|
* 上传
|
* whjlApi1103PR#pushData
|
*
|
* @param items
|
* @return
|
*/
|
@Expose
|
public String pushData(List<WhjlApi1103> items) {
|
return null;
|
}
|
}
|