| | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.annotation.JsonIgnoreProperties; |
| | | import org.apache.ibatis.type.Alias; |
| | | |
| | | import java.util.Date; |
| | | |
| | | @TableName(value = "tb_user_log") |
| | | @Alias("UserLog") |
| | | @JsonIgnoreProperties(ignoreUnknown = true) |
| | | public class UserLog { |
| | | |
| | | @TableId |
| | |
| | | @TableField("uOprateType") |
| | | private Integer operationType; |
| | | @TableField("uOprateDay") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Shanghai") |
| | | private Date operationTime; |
| | | @TableField("uTerminalIp") |
| | | private String terminalIp; |
| | |
| | | private String operationMsg; |
| | | private String operationDetail; |
| | | private Integer readFlag; |
| | | @TableField("uOprateMsgEnUs") |
| | | private String operationMsgEnUs; |
| | | @TableField("operation_detail_enUs") |
| | | private String operationDetailEnUs; |
| | | |
| | | @TableField(exist = false) |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Shanghai") |
| | | private Date operationTime2; |
| | | @TableField(exist = false) |
| | | private String operationTypeStr; |
| | |
| | | private Integer eventType; |
| | | @TableField(exist = false) |
| | | private String recordYear; |
| | | |
| | | @TableField(exist = false) |
| | | private Integer limitStart; |
| | | |
| | | @TableField(exist = false) |
| | | private Integer limitEnd; |
| | | |
| | | public String getOperationTypeStr() { |
| | | return operationTypeStr; |
| | |
| | | public void setRecordYear(String recordYear) { |
| | | this.recordYear = recordYear; |
| | | } |
| | | |
| | | public String getOperationMsgEnUs() { |
| | | return operationMsgEnUs; |
| | | } |
| | | |
| | | public void setOperationMsgEnUs(String operationMsgEnUs) { |
| | | this.operationMsgEnUs = operationMsgEnUs; |
| | | } |
| | | |
| | | public String getOperationDetailEnUs() { |
| | | return operationDetailEnUs; |
| | | } |
| | | |
| | | public void setOperationDetailEnUs(String operationDetailEnUs) { |
| | | this.operationDetailEnUs = operationDetailEnUs; |
| | | } |
| | | |
| | | public Integer getLimitStart() { |
| | | return limitStart; |
| | | } |
| | | |
| | | public void setLimitStart(Integer limitStart) { |
| | | this.limitStart = limitStart; |
| | | } |
| | | |
| | | public Integer getLimitEnd() { |
| | | return limitEnd; |
| | | } |
| | | |
| | | public void setLimitEnd(Integer limitEnd) { |
| | | this.limitEnd = limitEnd; |
| | | } |
| | | } |