| | |
| | | package com.moral.api.controller; |
| | | |
| | | import com.moral.api.entity.SysArea; |
| | | import com.moral.api.pojo.dto.account.*; |
| | | import com.moral.api.pojo.dto.organization.OrganizationDTO; |
| | | import com.moral.api.pojo.form.account.AccountDeleteForm; |
| | |
| | | import com.moral.api.pojo.vo.account.AccountQueryVO; |
| | | import com.moral.api.pojo.vo.account.AccountUpdateVO; |
| | | import com.moral.api.service.ManageAccountService; |
| | | import com.moral.api.service.SysAreaService; |
| | | import com.moral.constant.ResponseCodeEnum; |
| | | import com.moral.constant.ResultMessage; |
| | | import io.swagger.annotations.*; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Slf4j |
| | | @Api(tags = {"后台账户管理"}) |
| | |
| | | |
| | | return new ResultMessage(accountQueryDTO.getCode(), accountQueryDTO.getMsg(), accountQueryVO); |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |