Files
klp-oa/klp-wms/src/main/java/com/klp/domain/bo/WmsCoilWarehouseOperationLogBo.java
Joshi 04de7e267c feat(wms): 添加钢卷库区操作记录管理功能
- 创建钢卷库区操作记录实体类WmsCoilWarehouseOperationLog
- 定义服务接口IWmsCoilWarehouseOperationLogService及其实现
- 实现控制器WmsCoilWarehouseOperationLogController提供CRUD操作
- 添加数据传输对象WmsCoilWarehouseOperationLogBo和WmsCoilWarehouseOperationLogVo
- 配置MyBatis映射器WmsCoilWarehouseOperationLogMapper及XML映射文件
- 实现出入库操作类型和方向的业务字段定义
- 集成分页查询、导出Excel等功能
2026-03-05 11:12:44 +08:00

52 lines
863 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_coil_warehouse_operation_log
*
* @author klp
* @date 2026-03-05
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class WmsCoilWarehouseOperationLogBo extends BaseEntity {
/**
* 主键ID
*/
private Long logId;
/**
* 钢卷ID
*/
private Long coilId;
/**
* 实际库区ID
*/
private Long actualWarehouseId;
/**
* 业务操作类型1=收货2=加工3=调拨4=发货
*/
private Integer operationType;
/**
* 出入库方向1=入库2=出库
*/
private Integer inOutType;
/**
* 备注
*/
private String remark;
}