Newer
Older
pgdsc / src / com / szpg / db / dao / PgAcuRdcmdDao.java
admin on 15 Jan 2018 385 bytes 2018-01-15修改
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 int addCmdRecord(PgAcuRdcmd cmd);
	public int updateCmdRecordResponsed(String cmdId);
}