|
@@ -20,7 +20,9 @@ import java.util.List;
|
|
|
*/
|
|
*/
|
|
|
@Getter
|
|
@Getter
|
|
|
@Setter
|
|
@Setter
|
|
|
-@SearchBean(tables = "upgrade_order_don o left join upgrade_package up on o.package_id = up.id ",
|
|
|
|
|
|
|
+@SearchBean(tables = "upgrade_order_don o left join upgrade_package up on o.package_id = up.id " +
|
|
|
|
|
+ "left join goods_don g on up.goods_id = g.id " +
|
|
|
|
|
+ "left join goods_don_sku gds on up.sku_id = gds.id ",
|
|
|
where = ":condition:"
|
|
where = ":condition:"
|
|
|
)
|
|
)
|
|
|
public class UpgradeOrderDonBackView {
|
|
public class UpgradeOrderDonBackView {
|
|
@@ -45,6 +47,12 @@ public class UpgradeOrderDonBackView {
|
|
|
@DbField("o.goods_id")
|
|
@DbField("o.goods_id")
|
|
|
private Long goodsId;
|
|
private Long goodsId;
|
|
|
|
|
|
|
|
|
|
+ @DbField("g.title")
|
|
|
|
|
+ private String goodsTitle;
|
|
|
|
|
+
|
|
|
|
|
+ @DbField("gds.spec_val")
|
|
|
|
|
+ private String goodsSpecVal;
|
|
|
|
|
+
|
|
|
@DbField("o.user_id")
|
|
@DbField("o.user_id")
|
|
|
private Long userId;
|
|
private Long userId;
|
|
|
|
|
|