whycrzg
2021-02-23 351b9a53cb9ecebdf8f79db0117f540d9c42c2a4
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
package com.fgkj.mapper.impl;
 
import java.util.List;
 
import org.springframework.stereotype.Repository;
 
public interface BattinfThirdMapper {
 
    //1.3电池单体统计分析查询(旧)
    public List serchByCondition1(Object obj);
 
    //1.3电池单体统计分析查询
    public List serchByCondition(Object obj);
 
    /*public static void main(String[] args) {
            BattInfImpl biml = new BattInfImpl();
              BattInf binf = new BattInf();
              
              binf.setStationName("");
              binf.setStationName1("");
              binf.setBattGroupId(1000007);
              //binf.setBattGroupName1("");
      
     
              Batttestdata_inf tdata=new Batttestdata_inf();
              tdata.setTest_type(3);
              
              Batt_Maint_Dealarm bmd = new Batt_Maint_Dealarm();
              bmd.setBinf(binf);
              bmd.setTdata(tdata);
              
              
              BattinfThirdImpl bi=new BattinfThirdImpl();
              List<Batt_Maint_Dealarm> list = bi.serchByCondition(bmd);
              for (Batt_Maint_Dealarm b : list) {
                  System.out.println(b.getTdata());
              }
              System.out.println(list.size());
    }*/
 
}