XMTT преди 8 години
родител
ревизия
cc769de841
променени са 2 файла, в които са добавени 0 реда и са изтрити 21 реда
  1. 0 9
      src/main/java/com/ekexiu/console/system/po/Consult.java
  2. 0 12
      src/main/java/com/ekexiu/console/system/service/ConsultService.java

+ 0 - 9
src/main/java/com/ekexiu/console/system/po/Consult.java

@ -10,7 +10,6 @@ import org.jfw.apt.orm.core.defaultImpl.WIntHandler;
10 10
import org.jfw.apt.orm.core.enums.DE;
11 11
12 12
import java.math.BigDecimal;
13
import java.util.List;
14 13
15 14
/**
16 15
 * Created by TT on 2017/5/3.
@ -37,14 +36,6 @@ public class Consult implements CreateTimeSupported {
37 36
    private String revoveryTime;
38 37
    private Integer readStatus;
39 38
    private String demandId;
40
    private List<Tidings> tidings;
41
42
    public List<Tidings> getTidings() {
43
        return tidings;
44
    }
45
    public void setTidings(List<Tidings> tidings) {
46
        this.tidings = tidings;
47
    }
48 39
49 40
    @Column(DE.id_32)
50 41
    public String getConsultId() {

+ 0 - 12
src/main/java/com/ekexiu/console/system/service/ConsultService.java

@ -1,7 +1,6 @@
1 1
package com.ekexiu.console.system.service;
2 2
3 3
import com.ekexiu.console.system.dao.ConsultDao;
4
import com.ekexiu.console.system.dao.TidingsDao;
5 4
import com.ekexiu.console.system.pojo.ConsultInfo;
6 5
import org.jfw.apt.annotation.Autowrie;
7 6
import org.jfw.apt.annotation.DefaultValue;
@ -24,17 +23,6 @@ public class ConsultService {
24 23
    @Autowrie
25 24
    private ConsultDao consultDao;
26 25
27
    @Autowrie
28
    private TidingsDao tidingsDao;
29
30
    public TidingsDao getTidingsDao() {
31
        return tidingsDao;
32
    }
33
34
    public void setTidingsDao(TidingsDao tidingsDao) {
35
        this.tidingsDao = tidingsDao;
36
    }
37
38 26
    public ConsultDao getConsultDao() {
39 27
        return consultDao;
40 28
    }