|
|
@@ -99,6 +99,16 @@ public class CostDocumentTemplate extends BaseModel<CostDocumentTemplate> {
|
|
|
@TableField(value = "update_by", fill = FieldFill.INSERT_UPDATE)
|
|
|
@JsonProperty("updateBy")
|
|
|
private String updateBy;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "文书类型")
|
|
|
+ @TableField(value = "document_type")
|
|
|
+ @JsonProperty("documentType")
|
|
|
+ private String documentType;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "文书类型名称")
|
|
|
+ @TableField(value = "document_type_name")
|
|
|
+ @JsonProperty("documentTypeName")
|
|
|
+ private String documentTypeName;
|
|
|
|
|
|
@ApiModelProperty(value = "数据来源表id")
|
|
|
@TableField("table_id")
|
|
|
@@ -149,6 +159,23 @@ public class CostDocumentTemplate extends BaseModel<CostDocumentTemplate> {
|
|
|
this.isDeleted = isDeleted;
|
|
|
}
|
|
|
|
|
|
+ public String getDocumentTypeName() {
|
|
|
+ return documentTypeName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDocumentTypeName(String documentTypeName) {
|
|
|
+ this.documentTypeName = documentTypeName;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public String getDocumentType() {
|
|
|
+ return documentType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDocumentType(String documentType) {
|
|
|
+ this.documentType = documentType;
|
|
|
+ }
|
|
|
+
|
|
|
public String getDocumentName() {
|
|
|
return documentName;
|
|
|
}
|