Files
klp-oa/klp-wms/src/main/java/com/klp/domain/WmsCoilStatisticsSummary.java
Joshi f5017443d5 feat(wms): 新增卷材统计摘要附件功能
- 在 WmsCoilStatisticsSummary 实体中添加 attachmentInfo 字段
- 在 WmsCoilStatisticsSummaryBo 中添加 attachmentInfo 字段
- 在 WmsCoilStatisticsSummaryVo 中添加 attachmentInfo 字段
- 更新 Mapper XML 映射文件中的结果映射配置
- 修改 Vo 类继承 BaseEntity 基类
2026-03-10 10:42:57 +08:00

53 lines
1.3 KiB
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.klp.domain;
import com.baomidou.mybatisplus.annotation.*;
import com.klp.common.core.domain.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 钢卷生产统计汇总(数据透视结果持久化)对象 wms_coil_statistics_summary
*
* @author klp
* @date 2026-03-07
*/
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("wms_coil_statistics_summary")
public class WmsCoilStatisticsSummary extends BaseEntity {
private static final long serialVersionUID=1L;
/**
* 主键ID
*/
@TableId(value = "summary_id")
private Long summaryId;
/**
* 统计标题2026年3月冷硬卷切边统计、2026年一季度钢卷产量统计
*/
private String title;
/**
* 统计类型枚举COIL_TRIM-切边统计、COIL_PRODUCTION-产量统计、COIL_STOCK-库存统计、COIL_QUALITY-质量统计等)
*/
private String statType;
/**
* 统计结果JSON字符串存储透视分析结果支持大文本
*/
private String statJson;
/**
* 备注
*/
private String remark;
/**
* 删除标识 0正常 2删除
*/
@TableLogic
private Long delFlag;
// 新增附件字段
private String attachmentInfo;
}