¶Ô±ÈÐÂÎļþ |
| | |
| | | package org.jeecg.modules.mdc.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Update; |
| | | import org.jeecg.modules.mdc.entity.MdcShiftSub; |
| | | |
| | | /** |
| | | * @Description: çæ¬¡è¡¨(次表) |
| | | * @Author: Sake |
| | | * @Date: 2023-04-03 11:57 |
| | | */ |
| | | |
| | | public interface MdcShiftSubMapper extends BaseMapper<MdcShiftSub> { |
| | | |
| | | /** |
| | | * æ ¹æ®idä¿®æ¹åè¡¨ç¶æ |
| | | * @param id |
| | | * @param subStatus |
| | | * @return |
| | | */ |
| | | @Update("UPDATE mdc_shift_sub SET shift_sub_status = #{subStatus} WHERE ID = #{id}") |
| | | Boolean updateSubStatusById(@Param("id") String id, @Param("subStatus") String subStatus); |
| | | } |