zqy
2026-01-05 942f8537d9a433e2b4d3b34a242bf0e1849f61eb
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.ruoyi.domain;
 
import lombok.Data;
import org.springframework.web.bind.annotation.RequestParam;
 
@Data
public class MediaCompressRequest {
 
    String filePath;
    int width;
    int height;
    float quality;
}