西南铜检验委托临时样品
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
package com.zt.plat.module.qms.mq;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
/**
|
||||
* <b>SampleEntrustRegistrationAssayCompleteMessage</b>
|
||||
* 样品委托登记分析完成消息
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class SampleEntrustRegistrationAssayCompleteMessage {
|
||||
|
||||
/** 统一回调主题 */
|
||||
public static final String TOPIC = "SAMPLE_ENTRUST_REG_ASSAY_COMPLETE";
|
||||
|
||||
/**
|
||||
* 委托登记id
|
||||
*/
|
||||
private Long businessSampleEntrustRegistrationId;
|
||||
|
||||
/**
|
||||
* 委托来源Id
|
||||
*/
|
||||
private Long configEntrustSourceId;
|
||||
|
||||
/**
|
||||
* 委托来源
|
||||
*/
|
||||
private String configEntrustSourceName;
|
||||
|
||||
/**
|
||||
* 委托单号
|
||||
*/
|
||||
private String entrustNumber;
|
||||
|
||||
/**
|
||||
* 委托单号
|
||||
*/
|
||||
private String entrustUnit;
|
||||
}
|
||||
Reference in New Issue
Block a user