huang
2025-10-30 a99650cb00bf5b0650c33f39a4221b765201d228
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
30
31
package com.mes.vertical.details.vo;
 
import com.mes.glassinfo.GlassInfo;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
/**
 * @Author : zhoush
 * @Date: 2025/6/30 11:21
 * @Description:
 */
@ApiModel(description = "缺片详情")
public class TemperingGlassLackVO extends GlassInfo {
 
 
    @ApiModelProperty(value = "是否破损", position = 1)
    private Integer isDamage;
 
    /**
     * 重写toString方法,包含父类属性和当前类属性
     * 便于日志打印和问题排查
     * @return 包含所有属性的字符串表示
     */
    @Override
    public String toString() {
        return "TemperingGlassLackVO{" +
                "isDamage=" + isDamage +
                ", " + super.toString() +
                '}';
    }
}