| 1234567891011121314151617 |
- package io.renren.common.service;
-
- import com.baomidou.mybatisplus.extension.service.IService;
-
- import io.renren.common.entity.CustomersEntity;
-
- /**
- *
- * @author Mark
- * @email 67077482@qq.com
- * @date 2022-02-10 21:41:15
- */
- public interface CustomersService extends IService<CustomersEntity> {
-
- void pushCustomer();
- }
|