Files
klp-oa/klp-wms/src/main/java/com/klp/domain/bo/WmsDeliveryPlanCoilOperateBo.java
Joshi b02fb8025a feat(wms): 新增发货计划钢卷操作记录和明细管理模块
- 新增发货计划钢卷操作记录实体类、业务对象及视图对象
- 新增发货计划明细实体类、业务对象及视图对象
- 实现发货计划钢卷操作记录的增删改查接口及导出功能
- 实现发货计划明细的增删改查接口及导出功能
- 新增钢卷操作记录查询接口,支持根据计划ID和钢卷ID列表获取最新操作记录
- 完成对应Mapper接口和XML映射文件的配置
- 集成基础校验和逻辑删除功能
- 提供钢卷操作记录与钢卷明细信息的联合查询能力
2025-12-17 13:58:04 +08:00

47 lines
806 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.bo;
import com.klp.common.core.domain.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
import javax.validation.constraints.*;
/**
* 发货计划钢卷操作记录业务对象 wms_delivery_plan_coil_operate
*
* @author klp
* @date 2025-12-17
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class WmsDeliveryPlanCoilOperateBo extends BaseEntity {
/**
* 操作记录唯一ID
*/
private Long operateId;
/**
* 关联发货计划表IDwms_delivery_plan.plan_id
*/
private Long planId;
/**
* 钢卷ID单个钢卷关联钢卷表
*/
private Long coilId;
/**
* 操作类型
*/
private String operateType;
/**
* 操作备注
*/
private String remark;
}