@@ -124,7 +124,7 @@ public class OperationDao extends AbstractDao {
* @return
*/
publicList<OperationDto>getAllOperation(){
returnrawQueryGetDtoList("select tp.*, rpc.content_id from t_operation AS tp left outer join r_operation_content AS rpc on tp.operation_id = rpc.operation_id ORDER BY operation_id DESC",null,OperationDto.class);
returnrawQueryGetDtoList("select tp.*, rpc.content_id from t_operation AS tp left outer join r_operation_content AS rpc on tp.operation_id = rpc.operation_id AND rpc.operation_content_flg = 1 ORDER BY operation_id DESC",null,OperationDto.class);