kongdeqiang
2023-07-10 4f27e2a21aa7c0cbd07447b43fc3b83fd1525f88
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.boying.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.boying.entity.Park;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName ParkService.java
 * @Description TODO
 * @createTime 2022年11月20日 10:34:00
 */
public interface ParkService extends IService<Park> {
    int count1();
}