package com.whyc.pojo; import com.baomidou.mybatisplus.annotation.TableName; import org.apache.ibatis.type.Alias; import java.util.Date; @TableName(value = "tb_product_software_approving") @Alias("ProductSoftwareApproving") public class ProductSoftwareApproving { private Integer id; private String parentModel; private String softwareName; private String softwareUrl; private Date createTime; private Integer mainId; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getParentModel() { return parentModel; } public void setParentModel(String parentModel) { this.parentModel = parentModel; } public String getSoftwareName() { return softwareName; } public void setSoftwareName(String softwareName) { this.softwareName = softwareName; } public String getSoftwareUrl() { return softwareUrl; } public void setSoftwareUrl(String softwareUrl) { this.softwareUrl = softwareUrl; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } public Integer getMainId() { return mainId; } public void setMainId(Integer mainId) { this.mainId = mainId; } }