#
18516761980
2022-07-22 b743b62c7d57c84d16422841b0b51e85fe53a891
src/main/java/com/slcf/dao/WaitPakOutDao.java
@@ -2,6 +2,8 @@
import java.util.List;
import com.slcf.bean.WaitPakOutLogCondition;
import com.slcf.pojo.WaitPakOutLogBean;
import org.apache.ibatis.annotations.Delete;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Param;
@@ -31,6 +33,12 @@
//   @Select("select top (#{epage}) a.*,b.loc_desc loc_sts_name from cust_wait_pakout a,asr_bas_loc_type b where a.loc_sts=b.loc_sts and loc_no not in "
//         + " (select top (#{spage}) loc_no from cust_wait_pakout order by loc_no asc) order by loc_no asc")
   public List<WaitPakOutBean> queryWaitPakOutList(WaitPakOutCondition waitPakOutCon);
   public Integer waitPakOutSetEms(@Param("lgnum") String lgnum, @Param("tanum") int tanum, @Param("tapos") int tapos);
   public Integer countEmsNum();
   public List<WaitPakOutBean> queryWaitOutPak(@Param("vlpla") String vlpla, @Param("matnr") String matnr);
   
//   //统计所有数据总数量
//   @Select("select count(*) from cust_wait_pakout")
@@ -121,4 +129,10 @@
    */
   @Select("select top 1 * from cust_wait_pakout where status='Y' and io_status='N' and action=2 and prnstatus=1 order by io_status desc,modi_time asc")
   public WaitPakOutBean getWaitPakOutPrint();
   /**
    * 不分页查询所有信息,用于excel导出
    * @return
    */
   public List<WaitPakOutBean> getWaitPakOutAll(WaitPakOutCondition condition);
}