knu project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

37 lines
602 B

package kr.co.kihyun.beans.entity;
import javax.jdo.annotations.*;
@PersistenceCapable(identityType = IdentityType.APPLICATION)
public class DayCount extends LongEntity {
/**
*
*/
private static final long serialVersionUID = -2906946510891410703L;
@Persistent
private String writeDate;
@Persistent
private int count;
public DayCount() {
}
public String getWriteDate() {
return this.writeDate;
}
public void setWriteDate(String date) {
this.writeDate = date;
}
public int getCount() {
return this.count;
}
public void setCount(int count) {
this.count = count;
}
}