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
| package com.boying.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.boying.entity.Ticket;
|
| /**
| * @author kdq
| * @version 1.0.0
| * @ClassName TicketService.java
| * @Description TODO
| * @createTime 2022年11月20日 10:24:00
| */
| public interface TicketService extends IService<Ticket> {
| Integer count1();
|
| int count2();
|
| double sumByPrice();
|
| int count3();
|
| double sumByPrice2();
|
| int count4();
|
| int count5(int type);
|
| int count6();
|
| double sumByPrice3();
| }
|
|