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/InvPlaceOrderEntity.java

63 lines
1.1 KiB
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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 = "inv_place_order")
public class InvPlaceOrderEntity {
private Long id;
/**
* 上架记录号
*/
@TableField(value = "recordId")
private String recordId;
/**
* 上架方式 1按物资上架 2按单上架
*/
@TableField(value = "`type`")
private Integer type;
/**
* 单据号
*/
@TableField(value = "orderId")
private String orderId;
/**
* 操作人
*/
@TableField(value = "`createUser`")
private String createUser;
/**
* 上架时间
*/
@TableField(value = "createTime")
private Date createTime;
/**
* 更新时间
*/
@TableField(value = "updateTime")
private Date updateTime;
/**
* 备注
*/
@TableField(value = "remark")
private String remark;
}