微信平台接口
This commit is contained in:
parent
2b00033917
commit
e0e0e8e953
|
@ -2,6 +2,7 @@ package net.shapelight.modules.mobile.mapper;
|
|||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import net.shapelight.modules.mobile.entity.MobileCallLogs;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* @author zhangbo
|
||||
|
@ -9,6 +10,7 @@ import net.shapelight.modules.mobile.entity.MobileCallLogs;
|
|||
* @createDate 2024-11-14 09:51:55
|
||||
* @Entity net.shapelight.modules.mobile.entity.MobileCallLogs
|
||||
*/
|
||||
@Mapper
|
||||
public interface MobileCallLogsMapper extends BaseMapper<MobileCallLogs> {
|
||||
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@ package net.shapelight.modules.mobile.mapper;
|
|||
|
||||
import net.shapelight.modules.mobile.entity.MobileDeviceGroup;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* @author zhangbo
|
||||
|
@ -9,6 +10,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|||
* @createDate 2024-11-13 11:50:36
|
||||
* @Entity net.shapelight.modules.mobile.entity.MobileDeviceGroup
|
||||
*/
|
||||
@Mapper
|
||||
public interface MobileDeviceGroupMapper extends BaseMapper<MobileDeviceGroup> {
|
||||
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@ package net.shapelight.modules.mobile.mapper;
|
|||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import net.shapelight.modules.mobile.entity.MobileDevice;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* @author zhangbo
|
||||
|
@ -9,6 +10,7 @@ import net.shapelight.modules.mobile.entity.MobileDevice;
|
|||
* @createDate 2024-11-13 14:36:39
|
||||
* @Entity net.shapelight.modules.mobile.entity.MobileDevice
|
||||
*/
|
||||
@Mapper
|
||||
public interface MobileDeviceMapper extends BaseMapper<MobileDevice> {
|
||||
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@ package net.shapelight.modules.mobile.mapper;
|
|||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import net.shapelight.modules.mobile.entity.MobilePackage;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* @author zhangbo
|
||||
|
@ -9,6 +10,7 @@ import net.shapelight.modules.mobile.entity.MobilePackage;
|
|||
* @createDate 2024-11-14 09:50:19
|
||||
* @Entity net.shapelight.modules.mobile.entity.MobilePackage
|
||||
*/
|
||||
@Mapper
|
||||
public interface MobilePackageMapper extends BaseMapper<MobilePackage> {
|
||||
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@ package net.shapelight.modules.mobile.mapper;
|
|||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import net.shapelight.modules.mobile.entity.MobilePackageOrder;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* @author zhangbo
|
||||
|
@ -9,6 +10,7 @@ import net.shapelight.modules.mobile.entity.MobilePackageOrder;
|
|||
* @createDate 2024-11-14 09:51:08
|
||||
* @Entity net.shapelight.modules.mobile.entity.MobilePackageOrder
|
||||
*/
|
||||
@Mapper
|
||||
public interface MobilePackageOrderMapper extends BaseMapper<MobilePackageOrder> {
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue