From f667d9e1c6a05cd23399e3b02a44075d1dd00304 Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Wed, 8 Mar 2023 16:51:21 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AE=9E=E4=BD=93=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../entity/inv/DeviceReceiveOrderEntity.java | 49 ++++++++----------- 1 file changed, 20 insertions(+), 29 deletions(-) diff --git a/src/main/java/com/glxp/api/entity/inv/DeviceReceiveOrderEntity.java b/src/main/java/com/glxp/api/entity/inv/DeviceReceiveOrderEntity.java index 8c6ec58f9..58c3db0c9 100644 --- a/src/main/java/com/glxp/api/entity/inv/DeviceReceiveOrderEntity.java +++ b/src/main/java/com/glxp/api/entity/inv/DeviceReceiveOrderEntity.java @@ -1,114 +1,105 @@ package com.glxp.api.entity.inv; +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import java.util.Date; @Data +@TableName(value = "device_receive_order") public class DeviceReceiveOrderEntity { /** * id */ + @TableId(value = "id", type = IdType.INPUT) private Integer id; /** * 领用记录号 */ + @TableField(value = "orderId") private String orderId; /** * 领用部门 */ + @TableField(value = "fromDeptCode") private String fromDeptCode; /** * 领用仓库 */ + @TableField(value = "fromInvCode") private String fromInvCode; /** * 领用货位 */ + @TableField(value = "fromInvSpaceCode") private String fromInvSpaceCode; /** * 接收部门 */ + @TableField(value = "deptCode") private String deptCode; /** * 接收仓库 */ + @TableField(value = "invCode") private String invCode; /** * 接收货位 */ + @TableField(value = "invSpaceCode") private String invSpaceCode; /** * 状态 0:草稿 1:未审核 2:已审核 */ + @TableField(value = "status") private Integer status; /** * 创建人 */ + @TableField(value = "createUser") private String createUser; /** * 审核人 */ + @TableField(value = "auditUser") private String auditUser; /** * 领用人 */ + @TableField(value = "receiveUser") private String receiveUser; /** * 领用时间 */ + @TableField(value = "createTime") private Date createTime; /** * 更新时间 */ + @TableField(value = "updateTime") private Date updateTime; /** * 备注 */ + @TableField(value = "remark") private String remark; - /** - * 接收部门 - */ - private String deptName; - - /** - * 接收仓库 - */ - private String invName; - - /** - * 接收货位 - */ - private String invSpaceName; - - /** - * 领用部门名称 - */ - private String fromDeptName; - - /** - * 领用仓库名称 - */ - private String fromInvName; - - /** - * 领用货位名称 - */ - private String fromInvSpaceName; }