mark
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package com.cnbm.basic.mapper;
|
||||
|
||||
import com.cnbm.common.dao.BaseDao;
|
||||
import com.cnbm.basic.entity.Factory;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* 工厂 表
|
||||
*
|
||||
* @author why
|
||||
* @since 2022-07-13
|
||||
*/
|
||||
@Mapper
|
||||
public interface FactoryMapper extends BaseDao<Factory> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.cnbm.basic.mapper;
|
||||
|
||||
import com.cnbm.common.dao.BaseDao;
|
||||
import com.cnbm.basic.entity.Machine;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* 机台表
|
||||
*
|
||||
* @author why
|
||||
* @since 2022-07-15
|
||||
*/
|
||||
@Mapper
|
||||
public interface MachineMapper extends BaseDao<Machine> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.cnbm.basic.mapper;
|
||||
|
||||
import com.cnbm.common.dao.BaseDao;
|
||||
import com.cnbm.basic.entity.MeasureTool;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* 量具表
|
||||
*
|
||||
* @author why
|
||||
* @since 2022-07-13
|
||||
*/
|
||||
@Mapper
|
||||
public interface MeasureToolMapper extends BaseDao<MeasureTool> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.cnbm.basic.mapper;
|
||||
|
||||
import com.cnbm.common.dao.BaseDao;
|
||||
import com.cnbm.basic.entity.Platform;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* 站点表
|
||||
*
|
||||
* @author why
|
||||
* @since 2022-07-13
|
||||
*/
|
||||
@Mapper
|
||||
public interface PlatformMapper extends BaseDao<Platform> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.cnbm.basic.mapper;
|
||||
|
||||
import com.cnbm.common.dao.BaseDao;
|
||||
import com.cnbm.basic.entity.ProductFeaturesHis;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* 产品特性 历史表
|
||||
*
|
||||
* @author why
|
||||
* @since 2022-07-15
|
||||
*/
|
||||
@Mapper
|
||||
public interface ProductFeaturesHisMapper extends BaseDao<ProductFeaturesHis> {
|
||||
|
||||
}
|
||||
@@ -17,5 +17,5 @@ import java.util.Map;
|
||||
*/
|
||||
@Mapper
|
||||
public interface ProductTypeMapper extends BaseDao<ProductType> {
|
||||
IPage<ProductTypeDTO> page(IPage<ProductType> objectPage, @Param("param") Map<String, Object> params);
|
||||
//IPage<ProductTypeDTO> page(IPage<ProductType> objectPage, @Param("param") Map<String, Object> params);
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.cnbm.basic.mapper;
|
||||
|
||||
import com.cnbm.common.dao.BaseDao;
|
||||
import com.cnbm.basic.entity.ProductWorkingprocedureRelation;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* 工序 表
|
||||
*
|
||||
* @author why
|
||||
* @since 2022-07-15
|
||||
*/
|
||||
@Mapper
|
||||
public interface ProductWorkingprocedureRelationMapper extends BaseDao<ProductWorkingprocedureRelation> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.cnbm.basic.mapper;
|
||||
|
||||
import com.cnbm.common.dao.BaseDao;
|
||||
import com.cnbm.basic.entity.Shift;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* 班次 表
|
||||
*
|
||||
* @author why
|
||||
* @since 2022-07-13
|
||||
*/
|
||||
@Mapper
|
||||
public interface ShiftMapper extends BaseDao<Shift> {
|
||||
|
||||
}
|
||||
16
ym-baisc/src/main/java/com/cnbm/basic/mapper/TeamMapper.java
Normal file
16
ym-baisc/src/main/java/com/cnbm/basic/mapper/TeamMapper.java
Normal file
@@ -0,0 +1,16 @@
|
||||
package com.cnbm.basic.mapper;
|
||||
|
||||
import com.cnbm.common.dao.BaseDao;
|
||||
import com.cnbm.basic.entity.Team;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* 班组 表
|
||||
*
|
||||
* @author why
|
||||
* @since 2022-07-13
|
||||
*/
|
||||
@Mapper
|
||||
public interface TeamMapper extends BaseDao<Team> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package com.cnbm.basic.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.cnbm.basic.dto.WorkingProcedureDTO;
|
||||
import com.cnbm.common.dao.BaseDao;
|
||||
import com.cnbm.basic.entity.WorkingProcedure;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* 工序 表
|
||||
*
|
||||
* @author why
|
||||
* @since 2022-07-15
|
||||
*/
|
||||
@Mapper
|
||||
public interface WorkingProcedureMapper extends BaseDao<WorkingProcedure> {
|
||||
IPage<WorkingProcedureDTO> page(Map<String, Object> params);
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.cnbm.basic.mapper;
|
||||
|
||||
import com.cnbm.common.dao.BaseDao;
|
||||
import com.cnbm.basic.entity.WorkingProcedureType;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* 工序类型表 表
|
||||
*
|
||||
* @author why
|
||||
* @since 2022-07-15
|
||||
*/
|
||||
@Mapper
|
||||
public interface WorkingProcedureTypeMapper extends BaseDao<WorkingProcedureType> {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user