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.
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
@TableField(value = "count")
|
|
|
|
|
private int count;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|