@@ -33,4 +33,9 @@ open class Project {
@Column(name = "config_json")
var configJson: String? = null
+ /** 标准类型 */
+ @ApiModelProperty(value = "标准类型")
+ @Column(name = "type")
+ var type: String? = null
+
}