yangys
2025-08-30 86c8efdb19a2f4be79a947650ef62ed79382011b
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;
}