#
luxiaotao1123
2021-08-03 67da83c698e77ccf178669a31e4bd3a4e8fc1ca7
src/main/java/com/zy/common/service/erp/entity/OutStockBill.java
@@ -1,8 +1,12 @@
package com.zy.common.service.erp.entity;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableName;
import io.swagger.models.auth.In;
import lombok.Data;
import net.sf.jsqlparser.expression.DateTimeLiteralExpression;
import java.io.Serializable;
import java.util.Date;
/**
@@ -10,116 +14,154 @@
 * Created by vincent on 2020/11/27
 */
@Data
public class OutStockBill {
@TableName("OutStockBill")
public class OutStockBill implements Serializable {
    @TableField("FBrNo")
    private String FBrNo;
    /*通知单内码*/
    @TableField("FInterID")
    private Integer FInterID;
    /*单据编号*/
    @TableField("FBillNo")
    private String FBillNo;
    /*单据类型*/
    @TableField("FTranType")
    private Integer FTranType;
    /*销售方式*/
    @TableField("FSalType")
    private Integer FSalType;
    /*购货单位*/
    @TableField("FCustID")
    private Integer FCustID;
    /*日期*/
    private Date FDate;
    @TableField("FDate")
    private String FDate;
    /*收货仓库*/
    @TableField("FStockID")
    private Integer FStockID;
    /*地址*/
    @TableField("FAdd")
    private String FAdd;
    /*退料原因*/
    @TableField("FNote")
    private String FNote;
    /*业务员*/
    @TableField("FEmpID")
    private Integer FEmpID;
    /*审核人*/
    @TableField("FCheckerID")
    private Integer FCheckerID;
    /*制单*/
    @TableField("FBillerID")
    private Integer FBillerID;
    /*主管*/
    @TableField("FManagerID")
    private Integer FManagerID;
    @TableField("FClosed")
    private Integer FClosed;
    @TableField("FInvoiceClosed")
    private Short FInvoiceClosed;
    @TableField("FBClosed")
    private Short FBClosed;
    /*部门*/
    @TableField("FDeptID")
    private Integer FDeptID;
    /*结算方式*/
    @TableField("FSettleID")
    private Integer FSettleID;
    /*传输状态*/
    @TableField("FTranStatus")
    private Integer FTranStatus;
    /*汇率*/
    @TableField("FExchangeRate")
    private Double FExchangeRate;
    /*币别*/
    @TableField("FCurrencyID")
    private Integer FCurrencyID;
    /*状态*/
    @TableField("FStatus")
    private Short FStatus;
    /*作废*/
    private Long FCancellation;
    @TableField("FCancellation")
    private String FCancellation;
    /*一审*/
    @TableField("FMultiCheckLevel1")
    private Integer FMultiCheckLevel1;
    /*二审*/
    @TableField("FMultiCheckLevel2")
    private Integer FMultiCheckLevel2;
    /*三审*/
    @TableField("FMultiCheckLevel3")
    private Integer FMultiCheckLevel3;
    /*四审*/
    @TableField("FMultiCheckLevel4")
    private Integer FMultiCheckLevel4;
    /*五审*/
    @TableField("FMultiCheckLevel5")
    private Integer FMultiCheckLevel5;
    /*六审*/
    @TableField("FMultiCheckLevel6")
    private Integer FMultiCheckLevel6;
    /*一级审核日期*/
    private Date FMultiCheckDate1;
    @TableField("FMultiCheckDate1")
    private String FMultiCheckDate1;
    /*二级审核日期*/
    private Date FMultiCheckDate2;
    @TableField("FMultiCheckDate2")
    private String FMultiCheckDate2;
    /*三级审核日期*/
    private Date FMultiCheckDate3;
    @TableField("FMultiCheckDate3")
    private String FMultiCheckDate3;
    /*四级审核日期*/
    private Date FMultiCheckDate4;
    @TableField("FMultiCheckDate4")
    private String FMultiCheckDate4;
    /*五级审核日期*/
    private Date FMultiCheckDate5;
    @TableField("FMultiCheckDate5")
    private String FMultiCheckDate5;
    /*六级审核日期*/
    private Date FMultiCheckDate6;
    @TableField("FMultiCheckDate6")
    private String FMultiCheckDate6;
    @TableField("FCurCheckLevel")
    private Integer FCurCheckLevel;
    /*订货机构*/
    @TableField("FRelateBrID")
    private Integer FRelateBrID;
    /*审核日期*/
    private Date FCheckDate;
    @TableField("FCheckDate")
    private String FCheckDate;
    @TableField("FExplanation")
    private String FExplanation;
    @TableField("FFetchAdd")
    private String FFetchAdd;
    @TableField("FSelTranType")
    private Integer FSelTranType;
    @TableField("FChildren")
    private Integer FChildren;
    @TableField("FBrID")
    private Integer FBrID;
    @TableField("FAreaPS")
    private Integer FAreaPS;
    @TableField("FPOOrdBillNo")
    private String FPOOrdBillNo;
    @TableField("FManageType")
    private Integer FManageType;
    @TableField("FPrintCount")
    private Short FPrintCount;
    @TableField("Fflag_rw")
    private Integer Fflag_rw;
    @TableField("Fflag_finish")
    private Integer Fflag_finish;
    @TableField("FWeiOrder")
    private String FWeiOrder;
    @TableField("FWeiOpenID")
    private String FWeiOpenID;
    @TableField("FOrderBillNo")
    private String FOrderBillNo;
    @TableField("FWLNumber")
    private String FWLNumber;
    @TableField("FWLCompany")
    private String FWLCompany;
    @TableField("FReturnFundType")
    private String FReturnFundType;
}