1、新增文档分类管理
2、新增资源管理开发
This commit is contained in:
@@ -2,6 +2,7 @@ package com.rzdata.web.domain;
|
||||
|
||||
import com.rzdata.common.annotation.Excel;
|
||||
import com.rzdata.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
|
||||
@@ -11,6 +12,7 @@ import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
* @author ja
|
||||
* @date 2024-07-08
|
||||
*/
|
||||
@Data
|
||||
public class Document extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@@ -49,106 +51,11 @@ public class Document extends BaseEntity {
|
||||
@Excel(name = "文档地址")
|
||||
private String docUrl;
|
||||
|
||||
public void setDocId(String docId)
|
||||
{
|
||||
this.docId = docId;
|
||||
}
|
||||
/** 备注 */
|
||||
@Excel(name = "备注")
|
||||
private String remark;
|
||||
|
||||
public String getDocId()
|
||||
{
|
||||
return docId;
|
||||
}
|
||||
public void setDocCode(String docCode)
|
||||
{
|
||||
this.docCode = docCode;
|
||||
}
|
||||
|
||||
public String getDocCode()
|
||||
{
|
||||
return docCode;
|
||||
}
|
||||
public void setDocName(String docName)
|
||||
{
|
||||
this.docName = docName;
|
||||
}
|
||||
|
||||
public String getDocName()
|
||||
{
|
||||
return docName;
|
||||
}
|
||||
public void setDocType(String docType)
|
||||
{
|
||||
this.docType = docType;
|
||||
}
|
||||
|
||||
public String getDocType()
|
||||
{
|
||||
return docType;
|
||||
}
|
||||
public void setDocPrincipals(String docPrincipals)
|
||||
{
|
||||
this.docPrincipals = docPrincipals;
|
||||
}
|
||||
|
||||
public String getDocPrincipals()
|
||||
{
|
||||
return docPrincipals;
|
||||
}
|
||||
public void setDocRespDept(String docRespDept)
|
||||
{
|
||||
this.docRespDept = docRespDept;
|
||||
}
|
||||
|
||||
public String getDocRespDept()
|
||||
{
|
||||
return docRespDept;
|
||||
}
|
||||
public void setDocSource(String docSource)
|
||||
{
|
||||
this.docSource = docSource;
|
||||
}
|
||||
|
||||
public String getDocSource()
|
||||
{
|
||||
return docSource;
|
||||
}
|
||||
|
||||
public void setDocStatus(String docStatus)
|
||||
{
|
||||
this.docStatus = docStatus;
|
||||
}
|
||||
|
||||
public String getDocStatus()
|
||||
{
|
||||
return docStatus;
|
||||
}
|
||||
|
||||
public void setDocUrl(String docUrl)
|
||||
{
|
||||
this.docUrl = docUrl;
|
||||
}
|
||||
|
||||
public String getDocUrl()
|
||||
{
|
||||
return docUrl;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("docId", getDocId())
|
||||
.append("docCode", getDocCode())
|
||||
.append("docName", getDocName())
|
||||
.append("docType", getDocType())
|
||||
.append("docPrincipals", getDocPrincipals())
|
||||
.append("docRespDept", getDocRespDept())
|
||||
.append("docSource", getDocSource())
|
||||
.append("docStatus", getDocStatus())
|
||||
.append("docUrl", getDocUrl())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.toString();
|
||||
}
|
||||
/** 文档分类id */
|
||||
@Excel(name = "文档分类id")
|
||||
private String docCategoryId;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user