package com.jiuqi.mobile.core.service.service; import java.util.UUID; import com.jqmobile.core.orm.DBColumn; import com.jqmobile.core.orm.DBTable; @DBTable(name="TEST_TIME") public class CountBean { public CountBean(Long result) { this.recid=UUID.randomUUID().toString(); this.time = (int)(long)result; } @DBColumn(primaryId=true) private String recid; private int time; }