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

54 lines
1.1 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_warehouse_operation_log
*
* @author klp
* @date 2026-03-05
*/
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("wms_coil_warehouse_operation_log")
public class WmsCoilWarehouseOperationLog extends BaseEntity {
private static final long serialVersionUID=1L;
/**
* 主键ID
*/
@TableId(value = "log_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;
/**
* 删除标志0=正常1=已删除)
*/
@TableLogic
private Integer delFlag;
}