/* * Copyright (c) 2015, 张涛. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.kymjs.blog.domain; import java.io.Serializable; import org.kymjs.kjframe.database.annotate.Id; /** * 便签数据bean(有重载equals()方法) * * @author kymjs (https://www.kymjs.com/) * */ @SuppressWarnings("serial") public class NotebookData implements Serializable { @Id private int id; private String date; private String content; private int color; private int position; public int getPosition() { return position; } public void setPosition(int position) { this.position = position; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getDate() { return date; } public void setDate(String date) { this.date = date; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public int getColor() { return color; } public void setColor(int color) { this.color = color; } }