Files
ruoyi-java/ruoyi-system/src/main/java/com/ruoyi/jarvis/domain/TencentDocOperationLog.java
2025-11-07 14:40:42 +08:00

51 lines
1009 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.ruoyi.jarvis.domain;
import com.ruoyi.common.core.domain.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 腾讯文档操作日志对象 tencent_doc_operation_log
*
* @author system
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class TencentDocOperationLog extends BaseEntity {
private static final long serialVersionUID = 1L;
/** 主键ID */
private Long id;
/** 批次ID关联批量推送记录 */
private String batchId;
/** 文档ID */
private String fileId;
/** 工作表ID */
private String sheetId;
/** 操作类型 */
private String operationType;
/** 订单单号 */
private String orderNo;
/** 目标行号 */
private Integer targetRow;
/** 写入的物流链接 */
private String logisticsLink;
/** 操作状态 */
private String operationStatus;
/** 错误信息 */
private String errorMessage;
/** 操作人 */
private String operator;
}