|
@@ -3,6 +3,7 @@ package org.jeecg.modules.fbsPuArrivalvouch.entity;
|
|
|
import java.io.Serializable;
|
|
|
import java.util.Date;
|
|
|
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;
|
|
@@ -479,4 +480,31 @@ public class FbsArrivalVouchs implements Serializable {
|
|
|
/**cfactorycode*/
|
|
|
@Excel(name = "cfactorycode", width = 15)
|
|
|
private String cfactorycode;
|
|
|
+
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String index;//行号
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String arriveDate;//计划到货日期
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String vendorName;//供应商
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String materialCode;//物料号
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String materialName;//名称
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String specs;//型号规格
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String memo;//备注
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String arriveSum;//数量
|
|
|
+
|
|
|
+
|
|
|
}
|