Fancy
2024-09-11 f88c07d7941a0c18bb097f20618c18b9d2418ccc
pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoPr/PrOrderMapper.java
@@ -1,7 +1,12 @@
package com.dy.pmsGlobal.daoPr;
import com.dy.pmsGlobal.pojoPlt.PltProduct;
import com.dy.pmsGlobal.pojoPr.PrOrder;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
import java.util.Map;
/**
* @author User
@@ -14,10 +19,19 @@
    int deleteByPrimaryKey(Long id);
    int deleteLogicById(Long id);
    int insertSelective(PrOrder record);
    PrOrder selectByPrimaryKey(Long id);
    int updateByPrimaryKeySelective(PrOrder record);
    Long selectSomeCount(Map<String, Object> params);
    List<PrOrder> selectSome(Map<String, Object> params);
    List<PrOrder> selectAll(Map<String, Object> params);
    boolean exists(@Param("name") String name, @Param("id") Long id);
    int updateByPrimaryKeySelective(PrOrder record);
}