Newer
Older
pgdsc / src / com / szpg / db / dao / PgConRequestMsgDao.java
yxw on 5 Mar 2020 291 bytes add shigong
package com.szpg.db.dao;

import com.szpg.db.data.PgConRequestMsg;
import com.szpg.db.data.PgConWorkOrder;

import java.util.List;

public interface PgConRequestMsgDao {

    public void addConRequestMsg(List<PgConRequestMsg> pgConRequestMsgList);

    public String findLastRecordTime();
}