package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModelProperty;
|
import org.apache.ibatis.type.Alias;
|
|
import java.util.Date;
|
|
@TableName(value = "tb_product_software")
|
@Alias("ProductSoftware")
|
public class ProductSoftware {
|
|
private Integer id;
|
|
private String parentModel;
|
|
private String softwareName;
|
|
private String softwareUrl;
|
|
@ApiModelProperty("软件版本提交审批时间")
|
private Date submitTime;
|
@ApiModelProperty("软件版本生效时间")
|
private Date createTime;
|
|
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 getSubmitTime() {
|
return submitTime;
|
}
|
|
public void setSubmitTime(Date submitTime) {
|
this.submitTime = submitTime;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
}
|