package com.zy.third.entity;
|
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.baomidou.mybatisplus.annotations.TableId;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
import lombok.Data;
|
|
/**
|
*
|
* @TableName Exd_Outstock_Source
|
*/
|
@TableName(value ="Exd_Outstock_Source")
|
@Data
|
public class ExdOutstockSource implements Serializable {
|
/**
|
*
|
*/
|
@TableId
|
private Long id;
|
|
/**
|
*
|
*/
|
private Integer finterid;
|
|
/**
|
*
|
*/
|
private String fbillno;
|
|
/**
|
*
|
*/
|
private Integer ftrantype;
|
|
/**
|
*
|
*/
|
private Date fdate;
|
|
/**
|
*
|
*/
|
private Integer frob;
|
|
/**
|
*
|
*/
|
private Integer fdeptid;
|
|
/**
|
*
|
*/
|
private Integer fsupplyid;
|
|
/**
|
*
|
*/
|
private Integer fbillerid;
|
|
/**
|
*
|
*/
|
private Integer fentryid;
|
|
/**
|
*
|
*/
|
private Integer fitemid;
|
|
/**
|
*
|
*/
|
private Double fqty;
|
|
/**
|
*
|
*/
|
private Double fprice;
|
|
/**
|
*
|
*/
|
private String fbatchno;
|
|
/**
|
*
|
*/
|
private Integer funitid;
|
|
/**
|
*
|
*/
|
private String fsourcebillno;
|
|
/**
|
*
|
*/
|
private Integer fsourceentryid;
|
|
/**
|
*
|
*/
|
private Integer fsourceinterid;
|
|
/**
|
*
|
*/
|
private Integer fsourcetrantype;
|
|
/**
|
*
|
*/
|
private Integer fdcspid;
|
|
/**
|
*
|
*/
|
private Integer fdcstockid;
|
|
/**
|
*
|
*/
|
private Integer fscspid;
|
|
/**
|
*
|
*/
|
private Integer fscstockid;
|
|
/**
|
*
|
*/
|
private String forderbillno;
|
|
/**
|
*
|
*/
|
private Integer forderentryid;
|
|
/**
|
*
|
*/
|
private Integer forderinterid;
|
|
/**
|
*
|
*/
|
private Integer fplanmode;
|
|
/**
|
*
|
*/
|
private Date writetime;
|
|
/**
|
*
|
*/
|
private String writor;
|
|
/**
|
*
|
*/
|
private Integer status;
|
|
/**
|
*
|
*/
|
private Date readtime;
|
|
/**
|
*
|
*/
|
private String reador;
|
|
/**
|
*
|
*/
|
private String writormsg;
|
|
/**
|
*
|
*/
|
private String readormsg;
|
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
}
|