字典管理
资源管理 资源类型管理 团购卷订单管理 团购卷订单退款 团购卷商品(套餐商品修改与保存)
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package cn.ysk.cashier.mapper;
|
||||
|
||||
import cn.ysk.cashier.base.BaseMapper;
|
||||
import cn.ysk.cashier.pojo.TbPlatformDictType;
|
||||
import cn.ysk.cashier.dto.TbPlatformDictTypeDto;
|
||||
import org.mapstruct.Mapper;
|
||||
import org.mapstruct.ReportingPolicy;
|
||||
|
||||
@Mapper(componentModel = "spring", unmappedTargetPolicy = ReportingPolicy.IGNORE)
|
||||
public interface TbPlatformDictTypeMapper extends BaseMapper<TbPlatformDictTypeDto, TbPlatformDictType> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
package cn.ysk.cashier.mapper.order;
|
||||
|
||||
import cn.ysk.cashier.base.BaseMapper;
|
||||
import cn.ysk.cashier.dto.order.TbGroupOrderInfoDto;
|
||||
import cn.ysk.cashier.pojo.order.TbGroupOrderInfo;
|
||||
import org.mapstruct.Mapper;
|
||||
import org.mapstruct.ReportingPolicy;
|
||||
|
||||
@Mapper(componentModel = "spring", unmappedTargetPolicy = ReportingPolicy.IGNORE)
|
||||
public interface TbGroupOrderInfoMapper extends BaseMapper<TbGroupOrderInfoDto, TbGroupOrderInfo> {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user