zqy
昨天 9a35e2e3bded439bec2625055860c6f48e52efa7
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;
}