12 lines
161 B
Plaintext
12 lines
161 B
Plaintext
|
|
package com.sercurityControl.proteam.domain.vo;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
public class ImageVo {
|
||
|
|
|
||
|
|
private String imageType;
|
||
|
|
|
||
|
|
private Integer number;
|
||
|
|
}
|