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; }