generated from root/miduo_server
18 lines
347 B
Java
18 lines
347 B
Java
package com.jmfy.dao;
|
|
|
|
import com.jmfy.model.CItemInfo;
|
|
import com.jmfy.model.CItemParam;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
@Component
|
|
public interface ItemDao {
|
|
|
|
List<CItemInfo> getItemFlowByUser(CItemParam param) throws Exception;
|
|
|
|
List<CItemInfo> getItem2(CItemParam param) throws Exception;
|
|
|
|
}
|