Newer
Older
pgdsc / src / com / szpg / db / dao / PgAcuRdcmdDao.java
ty on 30 Jan 2018 503 bytes 2018-01-30 液位和对射报警
package com.szpg.db.dao;

import java.util.List;

import com.szpg.db.data.PgAcuRdcmd;

public interface PgAcuRdcmdDao {

	public List<PgAcuRdcmd> findAll();
	public PgAcuRdcmd findById(String id);
	
	public PgAcuRdcmd findLatestCmdByDestAndCount(String dest, int count);
	public PgAcuRdcmd findLatestCmdByDestAndType(String dest, String type);
	
	public int addCmdRecord(PgAcuRdcmd cmd);
	public int updateCmdRecordResponsed(String cmdId);
	public int deleteCmdRecord(String cmdId);
}