西南铜检验委托临时样品

This commit is contained in:
2026-04-02 16:09:52 +08:00
parent 9887c99571
commit ea62776bfd
24 changed files with 782 additions and 8 deletions

View File

@@ -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;
}