package com.panzhihua.service_community.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.panzhihua.common.model.dtos.property.CommonPage;
|
import com.panzhihua.common.model.vos.R;
|
import com.panzhihua.service_community.entity.ComActWarehouseApply;
|
import com.panzhihua.service_community.dao.ComActWarehouseApplyDao;
|
import com.panzhihua.service_community.service.ComActWarehouseApplyService;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* 物品申请表(ComActWarehouseApply)表服务实现类
|
*
|
* @author makejava
|
* @since 2021-10-09 17:13:53
|
*/
|
@Slf4j
|
@Service
|
public class ComActWarehouseApplyServiceImpl extends ServiceImpl<ComActWarehouseApplyDao, ComActWarehouseApply> implements ComActWarehouseApplyService {
|
|
@Override
|
public R pageList(CommonPage commonPage) {
|
return null;
|
}
|
}
|