package com.northglass.entity;
|
|
|
|
import java.util.Date;
|
|
import javax.persistence.Entity;
|
import javax.persistence.Table;
|
|
@Entity
|
@Table(name="gmms_dongzuo_table")
|
public class DongZuoTable extends IdEntity{
|
private Long number;
|
private String note;
|
|
|
public Long getNumber() {
|
return number;
|
}
|
public void setNumber(Long number) {
|
this.number = number;
|
}
|
public String getNote() {
|
return note;
|
}
|
public void setNote(String note) {
|
this.note = note;
|
}
|
|
|
|
|
|
|
|
}
|