You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
768 B
19 lines
768 B
6 years ago
|
package cn.redrock.assetmanage.mapper;
|
||
|
|
||
|
import cn.redrock.assetmanage.entity.AmMaterialLog;
|
||
|
import cn.redrock.assetmanage.entity.MaterialInfo;
|
||
|
import org.apache.ibatis.annotations.Param;
|
||
|
import tk.mybatis.mapper.common.Mapper;
|
||
|
|
||
|
import java.util.Date;
|
||
|
import java.util.List;
|
||
|
|
||
|
@org.apache.ibatis.annotations.Mapper
|
||
|
public interface AmMaterialLogMapper extends Mapper<AmMaterialLog> {
|
||
|
List<MaterialInfo> queryLog(@Param("operate") Integer operate,
|
||
|
@Param("status") Integer status,
|
||
|
@Param("field") String field,
|
||
|
@Param("content") String content,
|
||
|
@Param("startTm") Date startTm,
|
||
|
@Param("endTm") Date endTm);
|
||
|
}
|