fix: license多余字段删除补充

This commit is contained in:
caiyuchao
2025-08-01 11:14:15 +08:00
parent 4ecac9a912
commit 841f5e1418
4 changed files with 0 additions and 13 deletions

View File

@@ -62,7 +62,4 @@ public class LicensePageReqVO extends PageParam {
@Schema(description = "创建时间")
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
private LocalDateTime[] createTime;
@Schema(description = "提供者ID")
private Long providerId;
}

View File

@@ -109,7 +109,4 @@ public class LicenseRespVO implements VO {
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
@ExcelProperty("创建时间")
private LocalDateTime createTime;
@Schema(description = "提供者ID")
private Long providerId;
}

View File

@@ -56,7 +56,4 @@ public class LicenseSaveReqVO {
@Schema(description = "备注", example = "随便")
private String remark;
@Schema(description = "提供者ID")
private Long providerId;
}

View File

@@ -84,9 +84,5 @@ public class LicenseDO extends BaseDO {
* 备注
*/
private String remark;
/**
* 提供者ID
*/
private Long providerId;
}