jiazx0107@163.com
2023-05-17 620eab6cca2bc9ef9ea6d3067a0a5ba1deadbd1c
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
package com.ld.igds.drug.view;
 
import java.util.List;
import java.util.Map;
 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
 
import com.bstek.dorado.annotation.DataProvider;
import com.bstek.dorado.annotation.Expose;
import com.bstek.dorado.data.provider.Page;
import com.ld.igds.drug.service.HDrugService;
import com.ld.igds.models.Drug;
 
/**
 * 熏蒸管理的PR
 * 
 * @author: andy.jia
 * @description:
 * @version:
 * @data:2020年3月6日
 *
 */
@Component("drugPR")
public class DrugPR {
 
    @Autowired
    private HDrugService drugService;
 
    /**
     * ${dorado.getDataProvider("drugPR#listDrug").getResult()}
     * 
     * @param page
     * @param param
     * @throws Exception
     */
    @DataProvider
    public List<Drug> listDrug(String name) throws Exception {
        return drugService.listDrug(name);
    }
 
    @DataProvider
    public void pageDrug(Page<Drug> page, Map<String, Object> param)
            throws Exception {
        drugService.pageDrug(page, param);
    }
 
    /**
     * drugPR#delDrug
     * 
     * @param param
     * @throws Exception
     */
    @Expose
    public String delDrug(Drug data) throws Exception {
        return drugService.delDrug(data);
    }
 
    /**
     * drugPR#updateDrug 新增或者修改
     * 
     * @param param
     * @throws Exception
     */
    @Expose
    public String updateDrug(Drug data) throws Exception {
        return drugService.updateDrug(data);
    }
 
}