This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.glxp.api.entity.trace;
import lombok.Data;
import java.util.Date;
@Data
public class MqTraceMessage {
/**
* 消息创建时间
*/
private Date createTime;
* 报备企业ID唯一键
private Long companyId;
* 报备企业统一社会信用号
private String cerditNo;
* 任务类型 1:提交生产信息和出入库信息;2:提交出入库信息
private Integer taskType;
* 任务ID识别号(查询记录号) 调用接口后需回传
private Long taskId;
}