1st version that works
This commit is contained in:
@ -0,0 +1,22 @@
|
||||
package com.safemobile.lib;
|
||||
|
||||
public class HistCount {
|
||||
public String seq_id;
|
||||
public long count;
|
||||
|
||||
public HistCount()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public HistCount(String _seq_id, long _count)
|
||||
{
|
||||
seq_id = _seq_id;
|
||||
count = _count;
|
||||
}
|
||||
|
||||
public String toString()
|
||||
{
|
||||
return "seq_id: " + seq_id + " | count: " + count;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user