MpsMapper.java 871 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package com.brilliance.mapper;

import com.brilliance.entity.Mps;
import org.apache.ibatis.annotations.Param;

import java.util.Date;
import java.util.List;

public interface MpsMapper {
    int deleteByPrimaryKey(String inr);

    int insert(Mps record);

    int insertSelective(Mps record);

    Mps selectByPrimaryKey(String inr);

    int updateByPrimaryKeySelective(Mps record);

    int updateByPrimaryKey(Mps record);
21 22
//Platform.mdbReadset($mpslst,new Argument("nxtchncod",channel).and("sta",state).and("dir",dir).and("sttdattim",LE,new Date()),new Argument("sttdattim",ASC));
    List<Mps> getMpsList(@Param("nxtchncod") String nxtchncod,@Param("dir") String dir,@Param("sta") String sta,@Param("sttdattim") Date sttdattim,@Param("orderBy") String orderBy) ;
23

24 25 26 27

    int counterMps(@Param("dir") String dir);

    String getSrcchncod(@Param("inr") String inr);
28 29 30


}