IUnionOrderPushDAO.java
385 Bytes
package com.yoho.unions.dal;
import com.yoho.unions.dal.model.UnionOrderPush;
import org.apache.ibatis.annotations.Param;
public interface IUnionOrderPushDAO {
UnionOrderPush selectByPrimaryKey(Integer id);
UnionOrderPush selectByChannelId(String channelId);
UnionOrderPush selectByChannelIdAndIsNew(@Param("channelId")String channelId,@Param("isNew")String isNew);
}