|
|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package com.aucma.dms.mapper;
|
|
|
|
|
|
|
|
|
|
import com.aucma.dms.domain.DmsRecordShutDown;
|
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
@ -76,5 +77,8 @@ public interface DmsRecordShutDownMapper
|
|
|
|
|
* @param updateTime 更新时间
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int batchUpdateShutReason(Long[] recordShutDownIds, Long shutReasonId, Long updateBy, java.util.Date updateTime);
|
|
|
|
|
public int batchUpdateShutReason(@Param("recordShutDownIds") Long[] recordShutDownIds,
|
|
|
|
|
@Param("shutReasonId") Long shutReasonId,
|
|
|
|
|
@Param("updateBy") Long updateBy,
|
|
|
|
|
@Param("updateTime") java.util.Date updateTime);
|
|
|
|
|
}
|
|
|
|
|
|