guoyuji
2024-03-13 d8085c81987d5819d7f270bcf0bd68d879f28d2b
north-glass-erp/src/main/java/com/example/erp/mapper/pp/FlowCardMapper.java
@@ -1,5 +1,6 @@
package com.example.erp.mapper.pp;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.example.erp.entity.pp.FlowCard;
import com.example.erp.entity.sd.Order;
import com.example.erp.entity.sd.OrderDetail;
@@ -11,7 +12,7 @@
import java.util.Map;
@Mapper
public interface FlowCardMapper {
public interface FlowCardMapper extends BaseMapper<FlowCard> {
    //流程卡管理查询
    List<FlowCard> selectFlowCard(Integer offset, Integer pageSize, Date selectTime1, Date selectTime2, FlowCard flowCard);
@@ -31,7 +32,7 @@
    List<Map<String, String>> selectNoCardMp(String orderId, String productionId, FlowCard flowCard);
    //修改排版状态
    Boolean updateLayoutStatusMp(String processId);
    Boolean updateLayoutStatusMp(String processId,Integer state);
    Integer selectLayoutStatus(String processId);
@@ -59,4 +60,7 @@
    Integer selectLayer(String productionId, Integer orderNumber);
    Integer selectFlowCardCount(String orderId);
    List<Map<String, String>> flowCardDetailMp(String processId, FlowCard flowCard);
}