| | |
| | | import java.util.Date; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.se.common.core.annotation.Excel; |
| | | import com.se.common.core.web.domain.BaseEntity; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | |
| | | /** |
| | | * 控制日志对象 sys_ctrl_log |
| | | * |
| | | * |
| | | * @author se |
| | | * @date 2024-11-22 |
| | | * @date 2024-12-13 |
| | | */ |
| | | public class SysCtrlLog { |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | private Long logId; |
| | | |
| | | /** |
| | | * 表ID |
| | | */ |
| | | @Excel(name = "表ID") |
| | | private Long tabId; |
| | | |
| | | /** |
| | | * 标题 |
| | | */ |
| | | @Excel(name = "标题") |
| | | private String title; |
| | | |
| | | /** |
| | | * 类型 |
| | | * 类型(n-正常,e-错误) |
| | | */ |
| | | @Excel(name = "类型") |
| | | @Excel(name = "类型", readConverterExp = "n=-正常,e-错误") |
| | | private String type; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 备注 |
| | | */ |
| | | @Excel(name = "备注") |
| | | private String remark; |
| | | |
| | | public void setLogId(Long logId) { |
| | |
| | | |
| | | public Long getLogId() { |
| | | return logId; |
| | | } |
| | | |
| | | public void setTabId(Long tabId) { |
| | | this.tabId = tabId; |
| | | } |
| | | |
| | | public Long getTabId() { |
| | | return tabId; |
| | | } |
| | | |
| | | public void setTitle(String title) { |
| | |
| | | public String toString() { |
| | | return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("logId", getLogId()) |
| | | .append("tabId", getTabId()) |
| | | .append("title", getTitle()) |
| | | .append("type", getType()) |
| | | .append("ip", getIp()) |