首页 > 代码库 > 程序猿的量化交易之路(17)--Cointrader之Temporal实体(5)
程序猿的量化交易之路(17)--Cointrader之Temporal实体(5)
转载须要注明:http://blog.csdn.net/minimicall,http://cloudtrader.top/
这一小节说明一个时间实体Temporal实体,它的代码非常easy。
package org.cryptocoinpartners.schema; import java.util.Date; import javax.persistence.Basic; import javax.persistence.MappedSuperclass; import javax.persistence.Transient; import org.hibernate.annotations.Type; import org.joda.time.Instant; /** * @author Tim Olson */
//这个标注说明这个类也是一个基类,不会在数据库中创建表 @MappedSuperclass public class Temporal extends EntityBase { public Temporal(Instant time) { super(); this.time = time; this.dateTime = time.toDate(); this.timestamp = time.getMillis(); } /** For Events, this is the time the Event itself occured, not the time we received the Event. It should be remote * server time if available, and local time if the object was created locally */
/@/Type注解用于说明类型 @Type(type = "org.jadira.usertype.dateandtime.joda.PersistentInstantAsMillisLong") @Basic(optional = false) public Instant getTime() { return time; } //这个注解用于说明该字段不会存储到数据库中 @Transient public Date getDateTime() { return dateTime; } @Transient public long getTimestamp() { return timestamp; } // JPA protected Temporal() { } protected void setTime(Instant time) { this.time = time; this.dateTime = time.toDate(); this.timestamp = time.getMillis(); } protected Instant time;//时间 private long timestamp;//时间截 private Date dateTime;//日期 }
须要说明的是,这个类
程序猿的量化交易之路(17)--Cointrader之Temporal实体(5)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。