zss
2023-08-10 e8a75a44bdc130e8b162351c3c94c01f3d8ada5e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.yuanchu.mom.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.yuanchu.mom.pojo.Consignment;
import com.yuanchu.mom.pojo.dto.ConsignmentDto;
 
/**
 * 成品发货表(Consignment)表服务接口
 *
 * @author zss
 * @since 2023-08-10 15:08:02
 */
public interface ConsignmentService extends IService<Consignment> {
 
    /**
     * 新增成品发货
     * @param name
     * @param consignmentDto
     */
    String addCon(String name, ConsignmentDto consignmentDto);
}