package org.dromara.qa.md.domain.bo;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* 称重盒子DTO
|
*
|
* @author ruoyi
|
* @date 2026-04-09
|
*/
|
@Data
|
public class WeighingBoxBo
|
{
|
private Long id;
|
private String name;
|
private String code;
|
private BigDecimal weight;
|
private String unit;
|
private String location;
|
private Integer calibCycleDays;
|
private Integer remindDays;
|
private Date lastCalibDate;
|
private Integer activeStatus;
|
private String description;
|
}
|