自动化立体仓库 - WMS系统
zwl
2025-10-13 03b5b8a480fb201e288486299eb385a00d2aac66
src/main/java/com/zy/third/entity/ExdOutstockSource.java
New file
@@ -0,0 +1,193 @@
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 com.baomidou.mybatisplus.enums.IdType;
import lombok.Data;
/**
 *
 * @TableName Exd_Outstock_Source
 */
@TableName(value ="Exd_Outstock_Source")
@Data
public class ExdOutstockSource implements Serializable {
    /**
     *
     */
    @TableId(value = "ID", type = IdType.AUTO)
    private String 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;
}