| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /*
- * 版权所有 (C) 2015 知启蒙(ZHIQIM) 保留所有权利。[遇见知启蒙,邂逅框架梦]
- *
- * 知启蒙WEB容器(zhiqim_httpd)在LGPL3.0协议下开源:https://www.zhiqim.com/gitcan/zhiqim/zhiqim_httpd.htm
- *
- * This file is part of [zhiqim_httpd].
- *
- * [zhiqim_httpd] is free software: you can redistribute
- * it and/or modify it under the terms of the GNU Lesser General Public License
- * as published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * [zhiqim_httpd] is distributed in the hope that it will
- * be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with [zhiqim_httpd].
- * If not, see <http://www.gnu.org/licenses/>.
- */
- package org.zhiqim.announcement.dbo;
- import java.io.Serializable;
- import org.zhiqim.kernel.annotation.AnAlias;
- import org.zhiqim.kernel.json.Jsons;
- import org.zhiqim.orm.annotation.*;
- /**
- * 公告阅读表 对应表《ZOA_ANNOUNCEMENT_READER》
- */
- @AnAlias("ZoaAnnouncementReader")
- @AnTable(table="ZOA_ANNOUNCEMENT_READER", key="ANNOUNCEMENT_ID,OPERATOR_CODE", type="InnoDB")
- public class ZoaAnnouncementReader implements Serializable
- {
- private static final long serialVersionUID = 1L;
- @AnTableField(column="OPERATOR_CODE", type="string,32", notNull=true) private String operatorCode; //1.公告阅读操作员
- @AnTableField(column="ANNOUNCEMENT_ID", type="long", notNull=true) private long announcementId; //2.公告编号
- public String toString()
- {
- return Jsons.toString(this);
- }
- public String getOperatorCode()
- {
- return operatorCode;
- }
- public void setOperatorCode(String operatorCode)
- {
- this.operatorCode = operatorCode;
- }
- public long getAnnouncementId()
- {
- return announcementId;
- }
- public void setAnnouncementId(long announcementId)
- {
- this.announcementId = announcementId;
- }
- }
|