1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| package com.ycl.dto.media;
|
|
| import lombok.Data;
|
| /**
| * 图片缩放参数
| */
| @Data
| public class PictureZoomParameter {
|
| public static final PictureZoomParameter getBoardPar(){
| PictureZoomParameter par =new PictureZoomParameter();
| par.setWidth1(300);
| par.setWidth2(600);
| par.setWidth3(1200);
| return par;
| }
|
|
| private Integer width1;
|
| private Integer width2;
|
| private Integer width3;
|
| private Integer width4;
|
| }
|
|