57 lines
1.8 KiB
Java
57 lines
1.8 KiB
Java
|
|
package com.klp.domain.vo;
|
|||
|
|
|
|||
|
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
|||
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|||
|
|
import com.klp.common.annotation.ExcelDictFormat;
|
|||
|
|
import com.klp.common.convert.ExcelDictConvert;
|
|||
|
|
import lombok.Data;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 钢卷生产统计汇总(数据透视结果持久化)视图对象 wms_coil_statistics_summary
|
|||
|
|
*
|
|||
|
|
* @author klp
|
|||
|
|
* @date 2026-03-07
|
|||
|
|
*/
|
|||
|
|
@Data
|
|||
|
|
@ExcelIgnoreUnannotated
|
|||
|
|
public class WmsCoilStatisticsSummaryVo {
|
|||
|
|
|
|||
|
|
private static final long serialVersionUID = 1L;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 主键ID
|
|||
|
|
*/
|
|||
|
|
@ExcelProperty(value = "主键ID")
|
|||
|
|
private Long summaryId;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 统计标题(如:2026年3月冷硬卷切边统计、2026年一季度钢卷产量统计)
|
|||
|
|
*/
|
|||
|
|
@ExcelProperty(value = "统计标题", converter = ExcelDictConvert.class)
|
|||
|
|
@ExcelDictFormat(readConverterExp = "如=:2026年3月冷硬卷切边统计、2026年一季度钢卷产量统计")
|
|||
|
|
private String title;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 统计类型(枚举:COIL_TRIM-切边统计、COIL_PRODUCTION-产量统计、COIL_STOCK-库存统计、COIL_QUALITY-质量统计等)
|
|||
|
|
*/
|
|||
|
|
@ExcelProperty(value = "统计类型", converter = ExcelDictConvert.class)
|
|||
|
|
@ExcelDictFormat(readConverterExp = "枚=举:COIL_TRIM-切边统计、COIL_PRODUCTION-产量统计、COIL_STOCK-库存统计、COIL_QUALITY-质量统计等")
|
|||
|
|
private String statType;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 统计结果JSON字符串(存储透视分析结果,支持大文本)
|
|||
|
|
*/
|
|||
|
|
@ExcelProperty(value = "统计结果JSON字符串", converter = ExcelDictConvert.class)
|
|||
|
|
@ExcelDictFormat(readConverterExp = "存=储透视分析结果,支持大文本")
|
|||
|
|
private String statJson;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 备注
|
|||
|
|
*/
|
|||
|
|
@ExcelProperty(value = "备注")
|
|||
|
|
private String remark;
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|