| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package com.zksy.base.domain;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.time.LocalDateTime;
- import lombok.Data;
- /**
- * 发展历程
- * @TableName about_development_history
- */
- @TableName(value ="about_development_history")
- @Data
- public class AboutDevelopmentHistory implements Serializable {
- /**
- * 主键
- */
- @TableId(value = "id", type = IdType.ASSIGN_UUID)
- private String id;
- /**
- * 年份
- */
- @TableField(value = "year")
- private Integer year;
- /**
- * 历程描述
- */
- @TableField(value = "process_description")
- private String processDescription;
- /**
- * 创建人
- */
- @TableField(value = "create_by")
- private String createBy;
- /**
- * 创建时间
- */
- @TableField(value = "create_time")
- private LocalDateTime createTime;
- /**
- * 修改人
- */
- @TableField(value = "update_by")
- private String updateBy;
- /**
- * 修改时间
- */
- @TableField(value = "update_time")
- private LocalDateTime updateTime;
- @TableField(exist = false)
- private static final long serialVersionUID = 1L;
- }
|