| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.system.api.domain.CustomConfig; |
| | | import com.ruoyi.system.domain.dto.MgtAfterSaleSettingDTO; |
| | | import com.ruoyi.system.domain.dto.PointsConfigDTO; |
| | | import com.ruoyi.system.domain.vo.CustomConfigVO; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface ICustomConfigService extends IService<CustomConfig> { |
| | | |
| | | /** |
| | | * 保存积分设置 |
| | | * |
| | | * @param dto 积分配置数据传输对象 |
| | | */ |
| | | void savePointsSettings(PointsConfigDTO dto); |
| | | |
| | | |
| | | /** |
| | | * 获取积分设置 |
| | | * |
| | | * @return List<CustomConfig> |
| | | */ |
| | | List<CustomConfigVO> getPointsConfig(); |
| | | |
| | | /** |
| | | * 获取订单说明设置 |
| | | * |
| | | * @return CustomConfigVO |
| | | */ |
| | | CustomConfigVO getOrderDesc(); |
| | | |
| | | /** |
| | | * 订单说明设置 |
| | | * |
| | | * @param description 订单说明 |
| | | */ |
| | | void saveOrderDescription(String description); |
| | | |
| | | void saveAfterSaleSetting(MgtAfterSaleSettingDTO dto); |
| | | } |