Commit cd242640 by Jony.L

应用列表添加api供应商和供应商联系方式字段

parent b58e6b93
...@@ -56,6 +56,15 @@ public class ApiRespVO { ...@@ -56,6 +56,15 @@ public class ApiRespVO {
@ExcelProperty("状态:1=上架,0=下架") @ExcelProperty("状态:1=上架,0=下架")
private Integer status; private Integer status;
@Schema(description = "api供应商")
@ExcelProperty("api供应商")
private String vendor;
@Schema(description = "供应商联系方式")
@ExcelProperty("供应商联系方式")
private String vendorContact;
@Schema(description = "备注", example = "随便") @Schema(description = "备注", example = "随便")
@ExcelProperty("备注") @ExcelProperty("备注")
private String remark; private String remark;
......
...@@ -42,6 +42,12 @@ public class ApiSaveReqVO { ...@@ -42,6 +42,12 @@ public class ApiSaveReqVO {
@Schema(description = "状态:1=上架,0=下架", example = "1") @Schema(description = "状态:1=上架,0=下架", example = "1")
private Integer status; private Integer status;
@Schema(description = "API供应商",example = "麓湖科技")
private String vendor;
@Schema(description = "供应商联系方式", example = "13333333333")
private String vendorContact;
@Schema(description = "备注", example = "随便") @Schema(description = "备注", example = "随便")
private String remark; private String remark;
......
...@@ -66,6 +66,14 @@ public class ApiDO extends BaseDO { ...@@ -66,6 +66,14 @@ public class ApiDO extends BaseDO {
*/ */
private Integer status; private Integer status;
/** /**
* 供应商
*/
private String vendor;
/**
* 供应商联系方式
*/
private String vendorContact;
/**
* 备注 * 备注
*/ */
private String remark; private String remark;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment