zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
package com.changhong.epc.admin.service.corres;
 
import java.util.List;
 
import com.changhong.epc.bean.admin.CorresElField;
import com.changhong.epc.bean.admin.extend.CorresElFieldExtendFind;
 
 
public interface CorresElFieldService {
    
    /**
     * 查询出所有常量
     * @return
     */
    CorresElFieldExtendFind selectAll();
    
    /**
     * 查询出所有data_start为0常量
     * 
     */
    List<CorresElField> findCorres(CorresElField corr);
            
        
    /**
     * 修改常量
     * @return
     */
    int updateCorres(CorresElField corr);
    
    /**
     * 逻辑删除常量
     * @return
     */
    int deleteCorres(CorresElField corr);
    
    /**
     * 添加常量
     * @return
     */
    int addCorres(CorresElField corr);
    
    /**
     *通过常量获取mdcode 
     *//*
    String getMDCodeByBMCode(String bmCode);*/
    
    /**
     *获取CorresElField
     */
    List<CorresElField> getCorresElField(CorresElField corr);
}