Blame view

src/main/java/com/sincere/student/service/SysYxColumnService.java 1.06 KB
e5f98c16   徐泉   招生咨询会
1
2
3
4
package com.sincere.student.service;

import com.sincere.student.dto.yx.AddYxSchoolConsultVo;
import com.sincere.student.dto.yx.AddYxSchoolVo;
21d1bd0f   徐泉   招生咨询会
5
6
import com.sincere.student.dto.yx.CountYxSchoolConsult;
import com.sincere.student.dto.yx.QueryCountYxSchoolConsult;
e5f98c16   徐泉   招生咨询会
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
import com.sincere.student.model.ColumnType;
import com.sincere.student.model.yx.SysYxSchool;
import com.sincere.student.model.yx.SysYxSchoolConsult;
import com.sincere.student.utils.Page;

public interface SysYxColumnService {

    void addSchool(AddYxSchoolVo vo);

    void delSchool(Integer id);

    Page<SysYxSchool> schoolList(AddYxSchoolVo vo);

    void addColumnType(ColumnType columnType);

    void updateColumnType(ColumnType columnType);

    void delColumnType(Integer id);

    Page<SysYxSchoolConsult> consultList(AddYxSchoolConsultVo vo);

    void createConsult(AddYxSchoolConsultVo schoolConsultVo);

    void delConsult(Integer id);

    SysYxSchoolConsult getConsultDetail(Integer id);

    void updateRead(Integer id);
21d1bd0f   徐泉   招生咨询会
35
36

    Page<CountYxSchoolConsult> countConsultList(QueryCountYxSchoolConsult consult);
e5f98c16   徐泉   招生咨询会
37
}