模板、设备排序

This commit is contained in:
2025-02-20 18:37:23 +08:00
parent 7b40ae85d0
commit 240706c11c
19 changed files with 177 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
package com.ycwl.basic.model.pc.template.req;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
public class TemplateSortRequest {
@ApiModelProperty(value = "被操作模板的ID", required = true)
private Long templateId;
@ApiModelProperty(value = "排在其后的模板ID", required = false)
private Long afterTemplateId;
}