commit for pull

This commit is contained in:
caixiang
2023-02-22 20:48:15 +08:00
parent 4535677c93
commit 4d1a58b8c7
24 changed files with 1179 additions and 3 deletions

View File

@@ -0,0 +1,26 @@
package com.cnbm.packing.mapper;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* 机台表
*
* @author codeGenerator
* @since 2023-02-15
*/
@Mapper
public interface CamlineMapper {
float getByid(@Param("subId") String subId);
//从camline 系统获取实际pmpp
float getPMPPBySubId(@Param("subId") String subId);
String getOrderNameBySubId(@Param("subId") String subId);
Integer getTodayBoxNum();
}