Files
klp-oa/klp-wms/src/main/java/com/klp/domain/vo/WmsMaterialCoilRejudgeVo.java
Joshi d248b0e585 feat(wms): 添加钢卷物料改判记录查询功能
- 在IWmsMaterialCoilService中新增queryPageListWithRejudge方法
- 实现批量查询钢卷最新改判记录的Mapper方法
- 添加SQL映射查询每个钢卷的最新一条改判记录
- 创建WmsMaterialCoilRejudgeVo视图对象包含改判信息
- 实现控制器listWithRejudge接口供前端调用
- 在服务实现中批量关联钢卷与其最新改判记录
2026-05-08 16:58:47 +08:00

24 lines
506 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.klp.domain.vo;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 钢卷物料表视图对象(包含改判记录信息) wms_material_coil
*
* @author Joshi
* @date 2026-05-08
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class WmsMaterialCoilRejudgeVo extends WmsMaterialCoilVo {
private static final long serialVersionUID = 1L;
/**
* 最新改判记录通过wms_coil_quality_rejudge表
*/
private WmsCoilQualityRejudgeVo rejudgeInfo;
}