|  |  | 
 |  |  | import com.baomidou.mybatisplus.extension.service.IService; | 
 |  |  | import com.moral.api.pojo.dto.account.*; | 
 |  |  | import com.moral.api.pojo.dto.login.LoginDTO; | 
 |  |  | import com.moral.api.pojo.form.*; | 
 |  |  | import com.moral.api.pojo.form.account.AccountDeleteForm; | 
 |  |  | import com.moral.api.pojo.form.account.AccountInsertForm; | 
 |  |  | import com.moral.api.pojo.form.account.AccountQueryForm; | 
 |  |  | import com.moral.api.pojo.form.account.AccountUpdateForm; | 
 |  |  | import com.moral.api.pojo.form.login.LoginForm; | 
 |  |  | import com.moral.api.pojo.form.login.LogoutForm; | 
 |  |  |  | 
 |  |  | /** | 
 |  |  |  * <p> | 
 |  |  | 
 |  |  |            * @Author: 陈凯裕 | 
 |  |  |            * @Date: 2021/3/13 | 
 |  |  |            */ | 
 |  |  |     AccountInsertDTO insertAccount(AccountInsertForm accountInsertForm); | 
 |  |  |     AccountDTO insertAccount(AccountInsertForm accountInsertForm); | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |     * @Description: 查询账号 | 
 |  |  | 
 |  |  |             * @Author: 陈凯裕 | 
 |  |  |             * @Date: 2021/3/15 | 
 |  |  |             */ | 
 |  |  |     AccountUpdateDTO updateAccount(AccountUpdateForm accountUpdateForm); | 
 |  |  |     AccountDTO updateAccount(AccountUpdateForm accountUpdateForm); | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |     * @Description: 删除账号 | 
 |  |  | 
 |  |  |             * @Author: 陈凯裕 | 
 |  |  |             * @Date: 2021/3/16 | 
 |  |  |             */ | 
 |  |  |     AccountDeleteDTO deleteAccount(AccountDeleteForm accountDeleteForm); | 
 |  |  |     AccountDTO deleteAccount(AccountDeleteForm accountDeleteForm); | 
 |  |  | } |