亿众分发系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CustomersService.java 324B

1234567891011121314151617
  1. package io.renren.common.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import io.renren.common.entity.CustomersEntity;
  4. /**
  5. *
  6. * @author Mark
  7. * @email 67077482@qq.com
  8. * @date 2022-02-10 21:41:15
  9. */
  10. public interface CustomersService extends IService<CustomersEntity> {
  11. void pushCustomer();
  12. }