zqy
昨天 4aa4a9f3ddeccf7d8f05f54a127f0334b7691aaf
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;
}