package com.thhy.mobile.modules.biz.mouldcheck.entity;
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
@Data
|
public class ModCheckDto implements Serializable {
|
|
private String mouldNum;
|
|
private String modCheckId;
|
|
private String produceNumber;
|
|
private Integer matchStatus;
|
|
private String companyId;
|
|
private String mouldId;
|
|
|
|
private String proId;
|
|
private String ringNum;
|
}
|