新增:新增系统管理/部门管理/修改状态及删除功能(后续几天开始对现有代码进行优化,尤其要开始初步封装前后端 CRUD 组件,并针对现在使用的部分规范发起长期投票)

This commit is contained in:
2023-01-25 12:59:30 +08:00
parent 922b28126b
commit 693e825144
7 changed files with 175 additions and 27 deletions

View File

@@ -0,0 +1,46 @@
/*
* Copyright (c) 2022-present Charles7c Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package top.charles7c.cnadmin.common.model.request;
import java.io.Serializable;
import javax.validation.constraints.NotNull;
import lombok.Data;
import io.swagger.v3.oas.annotations.media.Schema;
import top.charles7c.cnadmin.common.enums.DisEnableStatusEnum;
/**
* 修改状态信息
*
* @author Charles7c
* @since 2023/1/24 19:51
*/
@Data
public class UpdateStatusRequest implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 状态1启用 2禁用
*/
@Schema(description = "状态1启用 2禁用")
@NotNull(message = "状态非法")
private DisEnableStatusEnum status;
}