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.WhjlApi1207;
|
import com.fzzy.whjl.dto.WhjlQDItem;
|
import org.springframework.stereotype.Component;
|
|
import java.util.List;
|
|
/**
|
* 合同信息
|
*
|
* @Author:YAN
|
*/
|
@Component
|
public class WhjlApi1207PR {
|
/**
|
* 获取列表信息
|
* whjlApi1207PR#listData
|
*
|
* @return
|
*/
|
@DataProvider
|
public List<WhjlApi1207> listData() {
|
return null;
|
}
|
|
/**
|
* 获取列表信息
|
* whjlApi1207PR#listItem
|
*
|
* @return
|
*/
|
@DataProvider
|
public List<WhjlQDItem> listItem(String id) {
|
return null;
|
}
|
|
/**
|
* 更新或修改
|
* whjlApi1207PR#saveData
|
*
|
* @param data
|
* @return
|
*/
|
@DataResolver
|
public String saveData(WhjlApi1207 data) {
|
return null;
|
}
|
|
|
/**
|
* 删除
|
* whjlApi1207PR#delData
|
*
|
* @param data
|
* @return
|
*/
|
@Expose
|
public String delData(WhjlApi1207 data) {
|
return null;
|
}
|
|
/**
|
* 删除合同商品清单
|
* whjlApi1207PR#delItem
|
*
|
* @param data
|
* @return
|
*/
|
@Expose
|
public String delItem(WhjlQDItem data) {
|
return null;
|
}
|
|
/**
|
* 上传
|
* whjlApi1207PR#pushData
|
*
|
* @param items
|
* @return
|
*/
|
@Expose
|
public String pushData(List<WhjlApi1207> items) {
|
return null;
|
}
|
}
|