package com.flightfeather.uav.domain.entity; import javax.persistence.*; @Table(name = "source_trace_msg_blob") public class SourceTraceMsgBlob { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Integer id; @Column(name = "msg_id") private Integer msgId; private String content; /** * @return id */ public Integer getId() { return id; } /** * @param id */ public void setId(Integer id) { this.id = id; } /** * @return msg_id */ public Integer getMsgId() { return msgId; } /** * @param msgId */ public void setMsgId(Integer msgId) { this.msgId = msgId; } /** * @return content */ public String getContent() { return content; } /** * @param content */ public void setContent(String content) { this.content = content == null ? null : content.trim(); } }