kongdeqiang
2024-03-18 ffa5f49a2bcb6311486d00777b3629538eb3e6f0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.boying.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.boying.entity.TicketBlack;
 
import java.util.List;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName TicketBlackService.java
 * @Description TODO
 * @createTime 2022年11月20日 10:37:00
 */
public interface TicketBlackService extends IService<TicketBlack> {
 
    List<TicketBlack> updateType();
 
    int count1();
 
    int count2();
 
    TicketBlack getByCarNo(String carNo,Integer isActive);
}