20 lines
532 B
Java
20 lines
532 B
Java
package com.evo.ding.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.evo.ding.domain.DingGroup;
|
|
import com.evo.ding.domain.DingShift;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
/**
|
|
* DingGroupMapper
|
|
*
|
|
* @author andy.shi
|
|
* @ClassName:DingsShiftGroupMapper
|
|
* @date: 2026年03月05日 14:47
|
|
* @remark: 开发人员联系方式 1042025947@qq.com/微信同步
|
|
*/
|
|
public interface DingGroupMapper extends BaseMapper<DingGroup> {
|
|
|
|
public DingGroup selectByDingId(@Param("dingId") String dingId);
|
|
}
|