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.
45 lines
813 B
45 lines
813 B
@startuml
|
|
class cc.liuyx.note.entity.Note {
|
|
- long id
|
|
- String content
|
|
- String time
|
|
- int tag
|
|
+ long getId()
|
|
+ String getContent()
|
|
+ String getTime()
|
|
+ void setId(long)
|
|
+ void setContent(String)
|
|
+ void setTime(String)
|
|
+ String toString()
|
|
+ int getTag()
|
|
+ void setTag(int)
|
|
}
|
|
class cc.liuyx.note.entity.SpinnerItem {
|
|
- String tagName
|
|
- int tagId
|
|
+ String getTagName()
|
|
+ void setTagName(String)
|
|
+ int getTagId()
|
|
+ void setTagId(int)
|
|
}
|
|
class cc.liuyx.note.entity.Plan {
|
|
- long id
|
|
- String title
|
|
- String content
|
|
- Calendar planTime
|
|
+ int getYear()
|
|
+ int getMonth()
|
|
+ int getDay()
|
|
+ int getHour()
|
|
+ int getMinute()
|
|
+ long getId()
|
|
+ void setId(long)
|
|
+ String getTitle()
|
|
+ void setTitle(String)
|
|
+ String getContent()
|
|
+ void setContent(String)
|
|
+ Calendar getPlanTime()
|
|
+ String getTime()
|
|
+ void setTime(String)
|
|
}
|
|
@enduml |