package cn.shlanbao.qms.domain;
|
|
import org.dromara.common.mybatis.core.domain.BaseEntity;
|
import com.baomidou.mybatisplus.annotation.*;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.io.Serial;
|
|
/**
|
* 复测记录对象 lb_sensor_retest
|
*
|
* @author bsw
|
* @date 2025-03-10
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@TableName("lb_sensor_retest")
|
public class LbSensorRetest extends BaseEntity {
|
|
@Serial
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 批次号
|
*/
|
private String batchCode;
|
|
/**
|
* 测试序号
|
*/
|
private String testNum;
|
|
/**
|
* 复测次数
|
*/
|
private String retestNum;
|
|
/**
|
* 设备号
|
*/
|
private String deviceCode;
|
|
/**
|
* 用户帐号
|
*/
|
private String userName;
|
|
/**
|
* 判定结果
|
*/
|
private String judgeResult;
|
|
/**
|
* 总测试项数
|
*/
|
private Long totalCount;
|
|
/**
|
* OK项数
|
*/
|
private Long okCount;
|
|
/**
|
* NG项数
|
*/
|
private Long ngCount;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
|
}
|