public class DocLogMapper implements RowMapper<DocLog> {
@Override
public DocLog mapRow(ResultSet rs, int rowNum) throws SQLException {
DocLog docLog = new DocLog();
docLog.setDocid(rs.getString("docid"));
docLog.setContent(rs.getString("content"));
docLog.setTime(rs.getDate("time"));
docLog.setUserName(rs.getString("user_name"));
return docLog;
}