对比新文件 |
| | |
| | | package com.gk.firework.Domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | |
| | | @TableName("user_deadline_operation_log") |
| | | public class UserDeadlineOperationLog implements Serializable { |
| | | |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | // 操作人 |
| | | private String operator; |
| | | // 操作人Uid |
| | | private Long operatorUid; |
| | | // 对象名称 |
| | | private String toUname; |
| | | |
| | | private Long toUid; |
| | | // 值 |
| | | private String val; |
| | | |
| | | private Date gmtCreate; |
| | | |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getOperator() { |
| | | return operator; |
| | | } |
| | | |
| | | public void setOperator(String operator) { |
| | | this.operator = operator; |
| | | } |
| | | |
| | | public Long getOperatorUid() { |
| | | return operatorUid; |
| | | } |
| | | |
| | | public void setOperatorUid(Long operatorUid) { |
| | | this.operatorUid = operatorUid; |
| | | } |
| | | |
| | | public String getToUname() { |
| | | return toUname; |
| | | } |
| | | |
| | | public void setToUname(String toUname) { |
| | | this.toUname = toUname; |
| | | } |
| | | |
| | | public Long getToUid() { |
| | | return toUid; |
| | | } |
| | | |
| | | public void setToUid(Long toUid) { |
| | | this.toUid = toUid; |
| | | } |
| | | |
| | | public String getVal() { |
| | | return val; |
| | | } |
| | | |
| | | public void setVal(String val) { |
| | | this.val = val; |
| | | } |
| | | |
| | | public Date getGmtCreate() { |
| | | return gmtCreate; |
| | | } |
| | | |
| | | public void setGmtCreate(Date gmtCreate) { |
| | | this.gmtCreate = gmtCreate; |
| | | } |
| | | } |