| | |
| | | package com.linghu.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.linghu.model.common.ResponseResult; |
| | | import com.linghu.model.dto.KeywordDto; |
| | | import com.linghu.model.dto.OrderDto; |
| | | import com.linghu.model.entity.Orders; |
| | |
| | | public interface SectionalizationService extends IService<Sectionalization> { |
| | | |
| | | List<SectionalizationUserVO> SectionalizationUser(); |
| | | |
| | | ResponseResult addSectionalization(Sectionalization sectionalization); |
| | | |
| | | ResponseResult edit(Sectionalization sectionalization); |
| | | } |