zqy
6 天以前 cb635bf5d57dd3b7f386b4ea6a3451e3d298af90
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;
}