Commit 439428b1 by Lee Jaebin

コメント修正

parent 44e8ef04
...@@ -314,17 +314,17 @@ public class OperationDao extends AbstractDao { ...@@ -314,17 +314,17 @@ public class OperationDao extends AbstractDao {
} }
/** /**
* 引数の報告タイプのみリストで取得 * 報告タイプの作業取得
* @param reportType * @param reportType 報告タイプ
* @return * @return 作業リスト
*/ */
public List<OperationDto> getOperationByReportType(Integer reportType) { public List<OperationDto> getOperationByReportType(Integer reportType) {
StringBuffer sql = new StringBuffer(); StringBuffer sql = new StringBuffer();
sql.append(" SELECT * "); sql.append(" SELECT * ");
sql.append(" FROM t_operation "); sql.append(" FROM t_operation ");
sql.append(" WHERE report_type = ?"); sql.append(" WHERE report_type = ?");
return rawQueryGetDtoList(sql.toString(), new String[] { "" + reportType }, OperationDto.class); return rawQueryGetDtoList(sql.toString(), new String[] { "" + reportType }, OperationDto.class);
} }
/** /**
* ユーザ情報でグループが変更した時のみ使用 * ユーザ情報でグループが変更した時のみ使用
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment