¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.yssh.entity; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | import lombok.Data; |
| | | import lombok.ToString; |
| | | |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | | |
| | | @ToString |
| | | @Data |
| | | public class DictRecord implements Serializable { |
| | | /** |
| | | * @Fields field:field:{todo}(ç¨ä¸å¥è¯æè¿°è¿ä¸ªåé表示ä»ä¹) |
| | | */ |
| | | private static final long serialVersionUID = -3279329060924610189L; |
| | | |
| | | /** |
| | | * ID |
| | | */ |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long id; |
| | | |
| | | /** |
| | | * 表åç§° |
| | | */ |
| | | private String tableName; |
| | | |
| | | /** |
| | | * å建æ¶é´ |
| | | */ |
| | | private Long createTime; |
| | | |
| | | /** |
| | | * 夿³¨ |
| | | */ |
| | | private String remarks; |
| | | |
| | | public DictRecord() { |
| | | } |
| | | |
| | | public DictRecord(Long id, String tableName, Long createTime, String remarks) { |
| | | this.id = id; |
| | | this.tableName = tableName; |
| | | this.createTime = createTime; |
| | | this.remarks = remarks; |
| | | } |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getTableName() { |
| | | return tableName; |
| | | } |
| | | |
| | | public void setTableName(String tableName) { |
| | | this.tableName = tableName; |
| | | } |
| | | |
| | | public Long getCreateTime() { |
| | | return createTime; |
| | | } |
| | | |
| | | public void setCreateTime(Long createTime) { |
| | | this.createTime = createTime; |
| | | } |
| | | |
| | | public String getRemarks() { |
| | | return remarks; |
| | | } |
| | | |
| | | public void setRemarks(String remarks) { |
| | | this.remarks = remarks; |
| | | } |
| | | } |