|
@@ -1,5 +1,6 @@
|
|
|
package org.jeecg.modules.productionScheduleReport.entity;
|
|
|
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
|
|
|
/**
|
|
@@ -7,24 +8,44 @@ import lombok.Data;
|
|
|
*/
|
|
|
@Data
|
|
|
public class ProductionSchedule {
|
|
|
-
|
|
|
+ @ApiModelProperty(value = "部门")
|
|
|
private String cDepName;// ;// 部门
|
|
|
+ @ApiModelProperty(value = "业务员")
|
|
|
private String cPersonName;// ;// 业务员
|
|
|
+ @ApiModelProperty(value = "销售订单号")
|
|
|
private String cSOCode;// ;// 销售订单号
|
|
|
+ @ApiModelProperty(value = "客户")
|
|
|
private String cCusName ;// 客户
|
|
|
+ @ApiModelProperty(value = "存货编码")
|
|
|
private String cInvCode ;// 存货编码
|
|
|
+ @ApiModelProperty(value = "存货名称")
|
|
|
private String cInvName ;// 存货名称
|
|
|
+ @ApiModelProperty(value = "款号")
|
|
|
private String itemNumber ;// 款号
|
|
|
+ @ApiModelProperty(value = "颜色")
|
|
|
private String color;// 颜色
|
|
|
+ @ApiModelProperty(value = "交期")
|
|
|
private String dPreDateBT ;// 交期
|
|
|
+ @ApiModelProperty(value = "订单数量")
|
|
|
private String iQuantity ;//订单数量
|
|
|
+ @ApiModelProperty(value = "原币含税单价")
|
|
|
private String iTaxUnitPrice ;// 原币含税单价
|
|
|
+ @ApiModelProperty(value = "总额(原币)")
|
|
|
private String totalSum ;// 总额(原币)
|
|
|
+ @ApiModelProperty(value = "单价(本币)")
|
|
|
private String bbPrice ;// 单价(本币)
|
|
|
+ @ApiModelProperty(value = "总额(本币)")
|
|
|
private String iNatSum ;// 总额(本币)
|
|
|
+ @ApiModelProperty(value = "实际发票成本")
|
|
|
private String icostsum ;// 实际发票成本
|
|
|
+ @ApiModelProperty(value = "已出库数量")
|
|
|
private String foutquantity ;//已出库数量
|
|
|
+ @ApiModelProperty(value = "累计开票数量")
|
|
|
private String iKPQuantity ;//累计开票数量
|
|
|
+ @ApiModelProperty(value = "累计开票金额")
|
|
|
private String iKPMoney ;// 累计开票金额
|
|
|
-
|
|
|
+ @ApiModelProperty(value = "图片id")
|
|
|
+ private String pictureId;//图片id
|
|
|
+ @ApiModelProperty(value = "图片流")
|
|
|
+ private byte[] picture;//图片流
|
|
|
}
|