| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /*
- * Copyright 2019-2020 Zheng Jie
- *
- * 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 me.zhengjie.base;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Getter;
- import lombok.Setter;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.hibernate.annotations.CreationTimestamp;
- import org.hibernate.annotations.UpdateTimestamp;
- import org.springframework.data.annotation.CreatedBy;
- import org.springframework.data.annotation.LastModifiedBy;
- import org.springframework.data.jpa.domain.support.AuditingEntityListener;
- import javax.persistence.Column;
- import javax.persistence.EntityListeners;
- import javax.persistence.MappedSuperclass;
- import java.io.Serializable;
- import java.lang.reflect.Field;
- import java.sql.Timestamp;
- /**
- * 通用字段, is_del 根据需求自行添加
- * @author Zheng Jie
- * @Date 2019年10月24日20:46:32
- */
- @Getter
- @Setter
- @MappedSuperclass
- @EntityListeners(AuditingEntityListener.class)
- public class BaseEntity implements Serializable {
- @CreatedBy
- @Column(name = "create_by", updatable = false)
- @ApiModelProperty(value = "创建人", hidden = true)
- private String createBy;
- @LastModifiedBy
- @Column(name = "update_by")
- @ApiModelProperty(value = "更新人", hidden = true)
- private String updateBy;
- @CreationTimestamp
- @Column(name = "create_time", updatable = false)
- @ApiModelProperty(value = "创建时间", hidden = true)
- private Timestamp createTime;
- @UpdateTimestamp
- @Column(name = "update_time")
- @ApiModelProperty(value = "更新时间", hidden = true)
- private Timestamp updateTime;
- /* 分组校验 */
- public @interface Create {}
- /* 分组校验 */
- public @interface Update {}
- @Override
- public String toString() {
- ToStringBuilder builder = new ToStringBuilder(this);
- Field[] fields = this.getClass().getDeclaredFields();
- try {
- for (Field f : fields) {
- f.setAccessible(true);
- builder.append(f.getName(), f.get(this)).append("\n");
- }
- } catch (Exception e) {
- builder.append("toString builder encounter an error");
- }
- return builder.toString();
- }
- }
|