zqy
18 小时以前 56b10e2bf55fcf845bda7267cd002fe0402d53a1
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;
}