📄 operlogparamentity.java
字号:
package com.funddeal.model.pojo.custom_entity;
/**
* @author Administrator
* 参数实体类
*/
public class OperLogParamEntity {
/*
* 柜台操作人员编号
*/
private String salesNo;
/*
* 操作类型
*/
private String operType;
/*
* 操作的数据库表
*/
private String operTableName;
/*
* 柜台操作人员的所操作的机器的地址
*/
private String MachineAddress;
/*
* 操作记录的主键
*/
private String operResultId;
public OperLogParamEntity() {
this.salesNo="";
this.operResultId="";
this.operType="";
this.operTableName="";
this.MachineAddress="";
}
/*
* 获得操作员操作的机器地址
*/
public String getMachineAddress() {
return MachineAddress;
}
/*
* 设置操作员操作的机器地址
*/
public void setMachineAddress(String machineAddress) {
MachineAddress = machineAddress;
}
/*
* 获得操作的数据表名
*/
public String getOperTableName() {
return operTableName;
}
/*
* 设置操作的数据表名
*/
public void setOperTableName(String operTableName) {
this.operTableName = operTableName;
}
/*
* 获得操作的类型
*/
public String getOperType() {
return operType;
}
/*
* 设置操作的类型
*/
public void setOperType(String operType) {
this.operType = operType;
}
/*
* 获取操作记录的主键
*/
public String getOperResultId() {
return operResultId;
}
/*
* 设置操作记录的主键
*/
public void setOperResultId(String operResultId) {
this.operResultId = operResultId;
}
/*
* 获取柜台操作人员的编号
*/
public String getSalesNo() {
return salesNo;
}
/*
* 设置柜台操作人员的编号
*/
public void setSalesNo(String salesNo) {
this.salesNo = salesNo;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -