| 123456789101112131415161718 |
- package io.renren.service;
-
- import io.renren.common.service.CrudService;
- import io.renren.common.utils.Result;
- import io.renren.dto.CustomersDTO;
- import io.renren.entity.CustomersEntity;
-
- /**
- * 客户表
- *
- * @author Mark sunlightcs@gmail.com
- * @since 1.0.0 2022-05-29
- */
- public interface CustomersService extends CrudService<CustomersEntity, CustomersDTO> {
-
- Result<String> inserCustomer(CustomersDTO dto) throws Exception;
-
- }
|