File was renamed from screen-manage/src/main/java/com/moral/api/pojo/dto/AccountDTO.java |
| | |
| | | package com.moral.api.pojo.dto; |
| | | package com.moral.api.pojo.dto.account; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonInclude; |
| | | import com.moral.api.entity.ManageAccount; |
| | | import com.moral.api.entity.ManageRole; |
| | | import lombok.Data; |
| | |
| | | * @Version TODO |
| | | **/ |
| | | @Data |
| | | @JsonInclude(JsonInclude.Include.NON_EMPTY) |
| | | public class AccountDTO { |
| | | public class AccountInsertDTO extends AccountDTO{ |
| | | |
| | | /* |
| | | * 添加成功 |
| | |
| | | |
| | | private String code; |
| | | |
| | | private ManageAccount account; |
| | | |
| | | private List<ManageRole> roles; |
| | | |
| | | } |