| 对比新文件 |
| | |
| | | package com.flightfeather.uav.domain.entity; |
| | | |
| | | import java.util.Date; |
| | | import javax.persistence.*; |
| | | |
| | | @Table(name = "source_trace_msg") |
| | | public class SourceTraceMsg { |
| | | @Id |
| | | private Integer id; |
| | | |
| | | @Column(name = "device_code") |
| | | private String deviceCode; |
| | | |
| | | @Column(name = "factor_name") |
| | | private String factorName; |
| | | |
| | | @Column(name = "exception_type") |
| | | private Integer exceptionType; |
| | | |
| | | @Column(name = "start_time") |
| | | private Date startTime; |
| | | |
| | | @Column(name = "end_time") |
| | | private Date endTime; |
| | | |
| | | @Column(name = "msg_type") |
| | | private Integer msgType; |
| | | |
| | | @Column(name = "create_time") |
| | | private Date createTime; |
| | | |
| | | private String content; |
| | | |
| | | /** |
| | | * @return id |
| | | */ |
| | | public Integer getId() { |
| | | return id; |
| | | } |
| | | |
| | | /** |
| | | * @param id |
| | | */ |
| | | public void setId(Integer id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | /** |
| | | * @return device_code |
| | | */ |
| | | public String getDeviceCode() { |
| | | return deviceCode; |
| | | } |
| | | |
| | | /** |
| | | * @param deviceCode |
| | | */ |
| | | public void setDeviceCode(String deviceCode) { |
| | | this.deviceCode = deviceCode == null ? null : deviceCode.trim(); |
| | | } |
| | | |
| | | /** |
| | | * @return factor_name |
| | | */ |
| | | public String getFactorName() { |
| | | return factorName; |
| | | } |
| | | |
| | | /** |
| | | * @param factorName |
| | | */ |
| | | public void setFactorName(String factorName) { |
| | | this.factorName = factorName == null ? null : factorName.trim(); |
| | | } |
| | | |
| | | /** |
| | | * @return exception_type |
| | | */ |
| | | public Integer getExceptionType() { |
| | | return exceptionType; |
| | | } |
| | | |
| | | /** |
| | | * @param exceptionType |
| | | */ |
| | | public void setExceptionType(Integer exceptionType) { |
| | | this.exceptionType = exceptionType; |
| | | } |
| | | |
| | | /** |
| | | * @return start_time |
| | | */ |
| | | public Date getStartTime() { |
| | | return startTime; |
| | | } |
| | | |
| | | /** |
| | | * @param startTime |
| | | */ |
| | | public void setStartTime(Date startTime) { |
| | | this.startTime = startTime; |
| | | } |
| | | |
| | | /** |
| | | * @return end_time |
| | | */ |
| | | public Date getEndTime() { |
| | | return endTime; |
| | | } |
| | | |
| | | /** |
| | | * @param endTime |
| | | */ |
| | | public void setEndTime(Date endTime) { |
| | | this.endTime = endTime; |
| | | } |
| | | |
| | | /** |
| | | * @return msg_type |
| | | */ |
| | | public Integer getMsgType() { |
| | | return msgType; |
| | | } |
| | | |
| | | /** |
| | | * @param msgType |
| | | */ |
| | | public void setMsgType(Integer msgType) { |
| | | this.msgType = msgType; |
| | | } |
| | | |
| | | /** |
| | | * @return create_time |
| | | */ |
| | | public Date getCreateTime() { |
| | | return createTime; |
| | | } |
| | | |
| | | /** |
| | | * @param createTime |
| | | */ |
| | | public void setCreateTime(Date createTime) { |
| | | this.createTime = createTime; |
| | | } |
| | | |
| | | /** |
| | | * @return content |
| | | */ |
| | | public String getContent() { |
| | | return content; |
| | | } |
| | | |
| | | /** |
| | | * @param content |
| | | */ |
| | | public void setContent(String content) { |
| | | this.content = content == null ? null : content.trim(); |
| | | } |
| | | } |