【7.3.4】添加返回基类

pull/52/head
ye_star 2023-03-28 09:52:37 +08:00
parent 3aabf715b5
commit 9ffd1d5f48
1 changed files with 85 additions and 0 deletions

View File

@ -0,0 +1,85 @@
/*
* Copyright [2020-2030] [https://www.stylefeng.cn]
*
* 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.
*
* GunsAPACHE LICENSE 2.0使
*
* 1.LICENSE
* 2.Guns
* 3.
* 4. https://gitee.com/stylefeng/guns
* 5. https://gitee.com/stylefeng/guns
* 6.
*/
package cn.stylefeng.roses.kernel.rule.pojo.response;
import cn.stylefeng.roses.kernel.rule.annotation.ChineseDescription;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
/**
*
* <p>
*
* <p>
*
* @author yxx
* @date 2023/03/28 18:08
*/
@Data
public class BaseResponse implements Serializable {
private static final long serialVersionUID = 1L;
/**
*
*/
@ChineseDescription("创建时间")
private Date createTime;
/**
*
*/
@ChineseDescription("创建人")
private Long createUser;
/**
*
*/
@ChineseDescription("创建人姓名")
private String createUserName;
/**
*
*/
@ChineseDescription("更新时间")
private Date updateTime;
/**
*
*/
@ChineseDescription("更新人")
private Long updateUser;
/**
*
*/
@ChineseDescription("更新人姓名")
private Long updateUserName;
}