12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- package com.caimei.modules.user.entity;
- import com.thinkgem.jeesite.common.persistence.DataEntity;
- import java.util.Date;
- public class OperationalLogs extends DataEntity<OperationalLogs> {
- private String institutionName;
- private String Contact;
- private String operationtype;
- private String Actioncontent;
- private String Operator;
- private Date Operationtime;
- private String startTime; //添加时间开始 查询条件
- private String endTime; //添加时间结束 查询条件
- public String getStartTime() {
- return startTime;
- }
- public void setStartTime(String startTime) {
- this.startTime = startTime;
- }
- public String getEndTime() {
- return endTime;
- }
- public void setEndTime(String endTime) {
- this.endTime = endTime;
- }
- public String getInstitutionName() {
- return institutionName;
- }
- public void setInstitutionName(String institutionName) {
- this.institutionName = institutionName;
- }
- public String getContact() {
- return Contact;
- }
- public void setContact(String contact) {
- this.Contact = contact;
- }
- public String getOperationtype() {
- return operationtype;
- }
- public void setOperationtype(String operationtype) {
- this.operationtype = operationtype;
- }
- public String getActioncontent() {
- return Actioncontent;
- }
- public void setActioncontent(String actioncontent) {
- Actioncontent = actioncontent;
- }
- public String getOperator() {
- return Operator;
- }
- public void setOperator(String operator) {
- Operator = operator;
- }
- public Date getOperationtime() {
- return Operationtime;
- }
- public void setOperationtime(Date operationtime) {
- Operationtime = operationtime;
- }
- }
|