1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.thhy.materials.modules.biz.weigh.entity.dto;
|
| import lombok.Data;
|
| import java.io.Serializable;
| @Data
| public class MouldDto implements Serializable {
| //模具编号
| private String mouldNum;
| //使用状态
| private String free;
| //次数
| private String currentCycleTime;
|
| }
|
|