whycxzp
2023-10-19 a9091979d1da40ae981f6389c826cdc08f3c3103
物料图纸图片历史
1个文件已添加
76 ■■■■■ 已修改文件
src/main/java/com/whyc/pojo/MaterialHistory.java 76 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/whyc/pojo/MaterialHistory.java
New file
@@ -0,0 +1,76 @@
package com.whyc.pojo;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import java.util.Date;
@TableName("tb_material_history")
public class MaterialHistory {
    private Integer id;
    private Integer materialId;
    private String picUrl;
    private String dwgUrl;
    private Integer upUserId;
    private Date createTime;
    @TableField(exist = false)
    private String upUserName;
    public Integer getUpUserId() {
        return upUserId;
    }
    public void setUpUserId(Integer upUserId) {
        this.upUserId = upUserId;
    }
    public String getUpUserName() {
        return upUserName;
    }
    public void setUpUserName(String upUserName) {
        this.upUserName = upUserName;
    }
    public Integer getId() {
        return id;
    }
    public void setId(Integer id) {
        this.id = id;
    }
    public Integer getMaterialId() {
        return materialId;
    }
    public void setMaterialId(Integer materialId) {
        this.materialId = materialId;
    }
    public String getPicUrl() {
        return picUrl;
    }
    public void setPicUrl(String picUrl) {
        this.picUrl = picUrl;
    }
    public String getDwgUrl() {
        return dwgUrl;
    }
    public void setDwgUrl(String dwgUrl) {
        this.dwgUrl = dwgUrl;
    }
    public Date getCreateTime() {
        return createTime;
    }
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
}