YYC
2023-08-08 a9a9977e1713cbe911da7701147e8c7be45a36d9
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
65
66
67
68
69
70
71
72
73
74
75
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.api.service.ApiCommonService;
import com.fzzy.api.service.ApiPushManager;
import com.fzzy.api.view.repository.ApiInfoDataRep;
import com.fzzy.whjl.dto.WhjlApi1204;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
 
import java.util.List;
 
/**
 * 客户信息
 *
 * @Author:YAN
 */
@Component
public class WhjlApi1204PR {
    @Autowired
    private ApiCommonService apiCommonService;
    @Autowired
    private ApiPushManager apiPushManager;
    @Autowired
    private ApiInfoDataRep apiInfoDataRep;
 
    /**
     * 获取列表信息
     * whjlApi1204PR#listData
     *
     * @return
     */
    @DataProvider
    public List<WhjlApi1204> listData() {
        return null;
    }
 
    /**
     * 更新或修改
     * whjlApi1204PR#saveData
     *
     * @param data
     * @return
     */
    @DataResolver
    public String saveData(WhjlApi1204 data) {
        return null;
    }
 
    /**
     * 删除
     * whjlApi1204PR#delData
     *
     * @param data
     * @return
     */
    @Expose
    public String delData(WhjlApi1204 data) {
        return null;
    }
 
    /**
     * 上传
     * whjlApi1204PR#pushData
     *
     * @param items
     * @return
     */
    @Expose
    public String pushData(List<WhjlApi1204> items) {
        return null;
    }
}