New file |
| | |
| | | package com.whyc.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | |
| | | import java.util.Date; |
| | | |
| | | @TableName("tb_technical_specification_lock_log") |
| | | public class TechnicalSpecificationLockLog { |
| | | |
| | | private Integer id; |
| | | private Integer technicalSpecificationId; |
| | | private String reason; |
| | | private String userName; |
| | | private Date createTime; |
| | | |
| | | /**操作类型:0-锁定,1-解锁*/ |
| | | private Integer status; |
| | | |
| | | public Integer getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Integer id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Integer getTechnicalSpecificationId() { |
| | | return technicalSpecificationId; |
| | | } |
| | | |
| | | public void setTechnicalSpecificationId(Integer technicalSpecificationId) { |
| | | this.technicalSpecificationId = technicalSpecificationId; |
| | | } |
| | | |
| | | public String getReason() { |
| | | return reason; |
| | | } |
| | | |
| | | public void setReason(String reason) { |
| | | this.reason = reason; |
| | | } |
| | | |
| | | public String getUserName() { |
| | | return userName; |
| | | } |
| | | |
| | | public void setUserName(String userName) { |
| | | this.userName = userName; |
| | | } |
| | | |
| | | public Date getCreateTime() { |
| | | return createTime; |
| | | } |
| | | |
| | | public void setCreateTime(Date createTime) { |
| | | this.createTime = createTime; |
| | | } |
| | | |
| | | public Integer getStatus() { |
| | | return status; |
| | | } |
| | | |
| | | public void setStatus(Integer status) { |
| | | this.status = status; |
| | | } |
| | | } |