广丰卷烟厂数采质量分析系统
baoshiwei
13 小时以前 d143af7023cfd4a0ced6f0ecf04ae3b3a06fd1dc
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
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;
}