parent
1f7dda1573
commit
89ae331599
9 changed files with 379 additions and 242 deletions
@ -1,4 +1,4 @@ |
|||||||
NODE_ENV=production |
NODE_ENV=production |
||||||
VUE_APP_API_BASE_URL=http://182.92.169.222:10085/jeecg-boot |
VUE_APP_API_BASE_URL=http://10.100.200.112:10085/jeecg-boot |
||||||
VUE_APP_CAS_BASE_URL=http://182.92.169.222:10085/jeecg-boot/cas |
VUE_APP_CAS_BASE_URL=http://10.100.200.112:10085/jeecg-boot/cas |
||||||
VUE_APP_ONLINE_BASE_URL=http://182.92.169.222:8012 |
VUE_APP_ONLINE_BASE_URL=http://10.100.200.112:8012 |
||||||
|
@ -0,0 +1,41 @@ |
|||||||
|
package org.jeecg.modules.largeScreen.vo; |
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
import org.jeecg.modules.demo.customermeasure.entity.CustomerMeasure; |
||||||
|
import org.jeecg.modules.demo.ordergoods.entity.OrderGoods; |
||||||
|
import org.jeecg.modules.demo.zyorders.entity.ZyOrders; |
||||||
|
import org.jeecg.modules.system.entity.SysUser; |
||||||
|
import org.jeecg.modules.zystylemodule.entity.NewStyleModule; |
||||||
|
import org.jeecgframework.poi.excel.annotation.Excel; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
@Data |
||||||
|
public class LargeOrderVo implements Serializable { |
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
//订单用户
|
||||||
|
private SysUser user; |
||||||
|
|
||||||
|
//订单
|
||||||
|
private ZyOrders orders; |
||||||
|
|
||||||
|
//商品
|
||||||
|
private OrderGoods orderGoods; |
||||||
|
|
||||||
|
//测体
|
||||||
|
private CustomerMeasure customerMeasure; |
||||||
|
|
||||||
|
//模块
|
||||||
|
private List<NewStyleModule> moduleList; |
||||||
|
|
||||||
|
//商品图片
|
||||||
|
private List<String> pictureList; |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue