1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package org.springblade.mdm.machinefile.vo;
|
| import io.swagger.v3.oas.annotations.media.Schema;
| import lombok.Getter;
| import lombok.Setter;
| import org.springblade.mdm.commons.vo.BaseVO;
|
| /**
| * 分页拆线呢
| */
|
| @Schema(description = "机床文件变更历史对象")
| @Setter
| @Getter
| public class MachineFileChangeHisVO extends BaseVO {
| @Schema(description = "用户姓名")
| private String name;
| }
|
|