李林
2023-10-07 658d4927d468c47208fd012d9128b09249c07eff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.chinaztt.mes.warehouse.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.chinaztt.mes.warehouse.entity.ProductOutput;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * 报工产出表
 *
 * @author cxf
 * @date 2020-11-17 10:12:32
 */
@Mapper
@Repository("outputMapper")
public interface ProductOutputMapper extends BaseMapper<ProductOutput> {
 
 
}