|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package com.glxp.api.dao.inout;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.glxp.api.dao.BaseMapperPlus;
|
|
|
|
|
import com.glxp.api.entity.system.PlatformEntity;
|
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
@ -9,9 +10,7 @@ import java.util.List;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
|
@Mapper
|
|
|
|
|
public interface PlatformDao {
|
|
|
|
|
|
|
|
|
|
int batchSave(List<PlatformEntity> list);
|
|
|
|
|
public interface PlatformDao extends BaseMapperPlus<PlatformDao,PlatformEntity,PlatformEntity> {
|
|
|
|
|
|
|
|
|
|
List<PlatformEntity> list( Map<String, Object> map);
|
|
|
|
|
|
|
|
|
@ -36,5 +35,5 @@ public interface PlatformDao {
|
|
|
|
|
|
|
|
|
|
int deleteById(@Param("id") String id);
|
|
|
|
|
|
|
|
|
|
void updateById(PlatformEntity platformEntity);
|
|
|
|
|
int updateById(PlatformEntity platformEntity);
|
|
|
|
|
}
|
|
|
|
|