OSDN Git Service

aaa
[traindelaybot/source.git] / workspace / .metadata / .plugins / org.eclipse.core.resources / .history / 5 / 903de7bf646b001115b7b82f2f4ce01a
1 package com.yuji.tdb.db;
2
3 @PersistenceCapable(identityType = IdentityType.APPLICATION)
4 public class Train {
5     @PrimaryKey
6     @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
7     private Long id;
8     @Persistent
9     private String name;
10     @Persistent
11     private String searchWord;
12     @Persistent
13     private int count;
14 }