|
|
|
@ -1,7 +1,6 @@
|
|
|
|
|
package com.engine.organization.mapper.extend;
|
|
|
|
|
|
|
|
|
|
import com.engine.organization.entity.extend.po.ExtendGroupPO;
|
|
|
|
|
import com.engine.organization.entity.fieldset.param.FieldTypeTreeParam;
|
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
|
|
import java.util.Collection;
|
|
|
|
@ -51,11 +50,11 @@ public interface ExtendGroupMapper {
|
|
|
|
|
|
|
|
|
|
void insertIgnoreNull(ExtendGroupPO extendGroupPO);
|
|
|
|
|
|
|
|
|
|
void update(@Param("id")Long id, @Param("name")String name);
|
|
|
|
|
void update(@Param("id") Long id, @Param("name") String name);
|
|
|
|
|
|
|
|
|
|
void delete(@Param("id") Long id);
|
|
|
|
|
|
|
|
|
|
void updateNameAndOrder(@Param("id")Long id, @Param("groupName")String groupName, @Param("showOrder")Integer showOrder);
|
|
|
|
|
void updateNameAndOrder(@Param("id") Long id, @Param("groupName") String groupName, @Param("showOrder") Integer showOrder, @Param("isShow") String isShow);
|
|
|
|
|
|
|
|
|
|
void batchDelete(@Param("ids")Set<Long> removeSet);
|
|
|
|
|
void batchDelete(@Param("ids") Set<Long> removeSet);
|
|
|
|
|
}
|
|
|
|
|