添加字段
This commit is contained in:
parent
4585faf518
commit
3edbdfbecb
|
|
@ -93,32 +93,25 @@ public class QgdInfoEntity implements Serializable {
|
||||||
private String suppliers;
|
private String suppliers;
|
||||||
|
|
||||||
|
|
||||||
@TableField(exist = false)
|
|
||||||
private String unitPrice;
|
private String unitPrice;
|
||||||
|
|
||||||
@TableField(exist = false)
|
|
||||||
private String materialUnits;
|
private String materialUnits;
|
||||||
|
|
||||||
@TableField(exist = false)
|
|
||||||
private String oneUnit;
|
private String oneUnit;
|
||||||
|
|
||||||
@TableField(exist = false)
|
|
||||||
private String oneUnitProportion;
|
private String oneUnitProportion;
|
||||||
|
|
||||||
@TableField(exist = false)
|
|
||||||
private String oneUnitPrice;
|
private String oneUnitPrice;
|
||||||
|
|
||||||
@TableField(exist = false)
|
|
||||||
private String twoUnit;
|
private String twoUnit;
|
||||||
|
|
||||||
@TableField(exist = false)
|
|
||||||
private String twoUnitProportion;
|
private String twoUnitProportion;
|
||||||
|
|
||||||
@TableField(exist = false)
|
|
||||||
private String twoUnitPrice;
|
private String twoUnitPrice;
|
||||||
|
|
||||||
@TableField(exist = false)
|
|
||||||
private String multiUnitType;
|
private String multiUnitType;
|
||||||
|
|
||||||
|
private String threeUnitProportion;
|
||||||
|
private String threeUnitPrice;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -159,5 +159,10 @@ public class QgdInfo implements Serializable {
|
||||||
|
|
||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String suppliers;
|
private String suppliers;
|
||||||
|
@TableField(exist = false)
|
||||||
|
private String threeUnitProportion;
|
||||||
|
@TableField(exist = false)
|
||||||
|
private String threeUnitPrice;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,8 @@
|
||||||
c.two_unit,
|
c.two_unit,
|
||||||
c.two_unit_proportion,
|
c.two_unit_proportion,
|
||||||
c.two_unit_price,
|
c.two_unit_price,
|
||||||
|
c.multi_unit_switch as three_unit_proportion,
|
||||||
|
c.reference_unit_price as three_unit_price,
|
||||||
c.multi_unit_type,
|
c.multi_unit_type,
|
||||||
c.suppliers
|
c.suppliers
|
||||||
FROM nu_invoicing_qgd_info a
|
FROM nu_invoicing_qgd_info a
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue