You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-wms-java/src/main/java/com/glxp/api/entity/inv/DeviceReceiveOrderEntity.java

112 lines
2.0 KiB
Java

package com.glxp.api.entity.inv;
2 years ago
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
2 years ago
@TableName(value = "device_receive_order")
public class DeviceReceiveOrderEntity {
2 years ago
/**
* id
*/
2 years ago
@TableId(value = "id", type = IdType.INPUT)
private Integer id;
/**
*
*/
2 years ago
@TableField(value = "orderId")
private String orderId;
/**
*
*/
2 years ago
@TableField(value = "fromDeptCode")
2 years ago
private String fromDeptCode;
/**
*
*/
2 years ago
@TableField(value = "fromInvCode")
2 years ago
private String fromInvCode;
/**
*
*/
2 years ago
@TableField(value = "fromInvSpaceCode")
2 years ago
private String fromInvSpaceCode;
/**
*
*/
2 years ago
@TableField(value = "deptCode")
private String deptCode;
2 years ago
/**
*
*/
2 years ago
@TableField(value = "invCode")
2 years ago
private String invCode;
/**
*
*/
2 years ago
@TableField(value = "invSpaceCode")
2 years ago
private String invSpaceCode;
/**
* 0稿 1 2
*/
2 years ago
@TableField(value = "status")
private Integer status;
/**
*
*/
2 years ago
@TableField(value = "createUser")
private String createUser;
/**
*
*/
2 years ago
@TableField(value = "auditUser")
private String auditUser;
2 years ago
/**
*
*/
2 years ago
@TableField(value = "receiveUser")
2 years ago
private String receiveUser;
/**
*
*/
2 years ago
@TableField(value = "createTime")
private Date createTime;
/**
*
*/
2 years ago
@TableField(value = "updateTime")
private Date updateTime;
/**
*
*/
@TableField(value = "auditTime")
private Date auditTime;
/**
*
*/
2 years ago
@TableField(value = "remark")
private String remark;
2 years ago
}