/** * Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). *

* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE; * you may not use this file except in compliance with the License. * You may obtain a copy of the License at *

* http://www.gnu.org/licenses/lgpl.html *

* 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 org.springblade.core.mp.base; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import org.springblade.core.tool.date.DatePattern; import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; import java.time.LocalDateTime; @Data public class BaseEntity implements Serializable { /** * 主键id */ @TableId(value = "id", type = IdType.AUTO) @ApiModelProperty(value = "主键id") private Integer id; /** * 创建人 */ @ApiModelProperty(value = "创建人") private Integer createUser; /** * 创建时间 */ @DateTimeFormat(pattern = DatePattern.NORM_DATETIME_PATTERN) @JsonFormat(pattern = DatePattern.NORM_DATETIME_PATTERN) @ApiModelProperty(value = "创建时间") private LocalDateTime createTime; /** * 更新人 */ @ApiModelProperty(value = "更新人") private Integer updateUser; /** * 更新时间 */ @DateTimeFormat(pattern = DatePattern.NORM_DATETIME_PATTERN) @JsonFormat(pattern = DatePattern.NORM_DATETIME_PATTERN) @ApiModelProperty(value = "更新时间") private LocalDateTime updateTime; /** * 状态[1:正常] */ @ApiModelProperty(value = "业务状态") private Integer status; /** * 状态[0:未删除,1:删除] */ @ApiModelProperty(value = "是否已删除") private Integer isDeleted; }