YYC
2023-08-04 3418d16574fe668d780665ab1159530df319c6bd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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.WhjlApi1105;
import org.springframework.stereotype.Component;
 
import java.util.List;
 
/**
 * 仓房信息
 *
 * @Author:YAN
 */
@Component
public class WhjlApi1105PR {
    /**
     * 获取列表信息
     * whjlApi1105PR#listData
     *
     * @return
     */
    @DataProvider
    public List<WhjlApi1105> listData() {
        return null;
    }
 
    /**
     * 更新或修改
     * whjlApi1105PR#saveData
     *
     * @param data
     * @return
     */
    @DataResolver
    public String saveData(WhjlApi1105 data) {
        return null;
    }
 
    /**
     * 删除
     * whjlApi1105PR#delData
     *
     * @param data
     * @return
     */
    @Expose
    public String delData(WhjlApi1105 data) {
        return null;
    }
 
    /**
     * 上传
     * whjlApi1105PR#pushData
     *
     * @param items
     * @return
     */
    @Expose
    public String pushData(List<WhjlApi1105> items) {
        return null;
    }
}