| | |
| | | package com.chinaztt.mes.plan.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.chinaztt.mes.plan.dto.CustomerDTO; |
| | | import com.chinaztt.mes.plan.dto.CustomerOrderDTO; |
| | | import com.chinaztt.mes.plan.entity.Customer; |
| | | import com.chinaztt.mes.plan.entity.CustomerOrder; |
| | | import com.chinaztt.mes.plan.vo.CustomerVO; |
| | | |
| | | /** |
| | | * 客户订单主表 |
| | |
| | | */ |
| | | public interface CustomerService extends IService<Customer> { |
| | | |
| | | boolean saveDto(CustomerDTO customerDTO); |
| | | boolean saveDto(CustomerVO customerVO); |
| | | |
| | | String contractNoMake(); |
| | | } |