parent
a7f0dac52e
commit
c2dc70d5a1
9 changed files with 484 additions and 231 deletions
@ -1,211 +1,293 @@ |
|||||||
package org.jeecg.modules.demo.zyorders.entity; |
package org.jeecg.modules.demo.zyorders.entity; |
||||||
|
|
||||||
import java.io.Serializable; |
import java.io.Serializable; |
||||||
import java.io.UnsupportedEncodingException; |
import java.io.UnsupportedEncodingException; |
||||||
import java.util.Date; |
import java.util.Date; |
||||||
import java.math.BigDecimal; |
import java.math.BigDecimal; |
||||||
import com.baomidou.mybatisplus.annotation.IdType; |
|
||||||
import com.baomidou.mybatisplus.annotation.TableId; |
import com.baomidou.mybatisplus.annotation.IdType; |
||||||
import com.baomidou.mybatisplus.annotation.TableName; |
import com.baomidou.mybatisplus.annotation.TableId; |
||||||
import lombok.Data; |
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
import com.fasterxml.jackson.annotation.JsonFormat; |
import lombok.Data; |
||||||
import org.springframework.format.annotation.DateTimeFormat; |
import com.fasterxml.jackson.annotation.JsonFormat; |
||||||
import org.jeecgframework.poi.excel.annotation.Excel; |
import org.springframework.format.annotation.DateTimeFormat; |
||||||
import org.jeecg.common.aspect.annotation.Dict; |
import org.jeecgframework.poi.excel.annotation.Excel; |
||||||
import io.swagger.annotations.ApiModel; |
import org.jeecg.common.aspect.annotation.Dict; |
||||||
import io.swagger.annotations.ApiModelProperty; |
import io.swagger.annotations.ApiModel; |
||||||
import lombok.EqualsAndHashCode; |
import io.swagger.annotations.ApiModelProperty; |
||||||
import lombok.experimental.Accessors; |
import lombok.EqualsAndHashCode; |
||||||
|
import lombok.experimental.Accessors; |
||||||
/** |
|
||||||
* @Description: 订单基本信息管理 |
/** |
||||||
* @Author: jeecg-boot |
* @Description: 订单基本信息管理 |
||||||
* @Date: 2022-12-26 |
* @Author: jeecg-boot |
||||||
* @Version: V1.0 |
* @Date: 2022-12-26 |
||||||
*/ |
* @Version: V1.0 |
||||||
@Data |
*/ |
||||||
@TableName("zy_orders") |
@Data |
||||||
@Accessors(chain = true) |
@TableName("zy_orders") |
||||||
@EqualsAndHashCode(callSuper = false) |
@Accessors(chain = true) |
||||||
@ApiModel(value="zy_orders对象", description="订单基本信息管理") |
@EqualsAndHashCode(callSuper = false) |
||||||
public class ZyOrders implements Serializable { |
@ApiModel(value = "zy_orders对象", description = "订单基本信息管理") |
||||||
private static final long serialVersionUID = 1L; |
public class ZyOrders implements Serializable { |
||||||
|
private static final long serialVersionUID = 1L; |
||||||
/**主键*/ |
|
||||||
@TableId(type = IdType.ASSIGN_ID) |
/** |
||||||
@ApiModelProperty(value = "主键") |
* 主键 |
||||||
private java.lang.String id; |
*/ |
||||||
/**创建人*/ |
@TableId(type = IdType.ASSIGN_ID) |
||||||
@ApiModelProperty(value = "创建人") |
@ApiModelProperty(value = "主键") |
||||||
private java.lang.String createBy; |
private java.lang.String id; |
||||||
/**创建日期*/ |
/** |
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") |
* 创建人 |
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
*/ |
||||||
@ApiModelProperty(value = "创建日期") |
@ApiModelProperty(value = "创建人") |
||||||
private java.util.Date createTime; |
private java.lang.String createBy; |
||||||
/**更新人*/ |
/** |
||||||
@ApiModelProperty(value = "更新人") |
* 创建日期 |
||||||
private java.lang.String updateBy; |
*/ |
||||||
/**更新日期*/ |
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") |
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
@ApiModelProperty(value = "创建日期") |
||||||
@ApiModelProperty(value = "更新日期") |
private java.util.Date createTime; |
||||||
private java.util.Date updateTime; |
/** |
||||||
/**所属部门*/ |
* 更新人 |
||||||
@ApiModelProperty(value = "所属部门") |
*/ |
||||||
private java.lang.String sysOrgCode; |
@ApiModelProperty(value = "更新人") |
||||||
/**是否子单*/ |
private java.lang.String updateBy; |
||||||
@Excel(name = "是否子单", width = 15, dicCode = "ischild") |
/** |
||||||
@Dict(dicCode = "ischild") |
* 更新日期 |
||||||
@ApiModelProperty(value = "是否子单") |
*/ |
||||||
private java.lang.Integer ischild; |
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
||||||
/**原订单id*/ |
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||||
@Excel(name = "原订单id", width = 15) |
@ApiModelProperty(value = "更新日期") |
||||||
@Dict(dictTable = "zy_orders", dicText = "orders_num", dicCode = "id") |
private java.util.Date updateTime; |
||||||
@ApiModelProperty(value = "原订单id") |
/** |
||||||
private java.lang.String orderId; |
* 所属部门 |
||||||
/**下单时间*/ |
*/ |
||||||
@Excel(name = "下单时间", width = 15, format = "yyyy-MM-dd HH:mm:ss") |
@ApiModelProperty(value = "所属部门") |
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") |
private java.lang.String sysOrgCode; |
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
/** |
||||||
@ApiModelProperty(value = "下单时间") |
* 是否子单 |
||||||
private java.util.Date orderTime; |
*/ |
||||||
/**订单编号*/ |
@Excel(name = "是否子单", width = 15, dicCode = "ischild") |
||||||
@Excel(name = "订单编号", width = 15) |
@Dict(dicCode = "ischild") |
||||||
@ApiModelProperty(value = "订单编号") |
@ApiModelProperty(value = "是否子单") |
||||||
private java.lang.String ordersNum; |
private java.lang.Integer ischild; |
||||||
/**总金额*/ |
/** |
||||||
@Excel(name = "总金额", width = 15) |
* 原订单id |
||||||
@ApiModelProperty(value = "总金额") |
*/ |
||||||
private java.lang.Double money; |
@Excel(name = "原订单id", width = 15) |
||||||
/**运费*/ |
@Dict(dictTable = "zy_orders", dicText = "orders_num", dicCode = "id") |
||||||
@Excel(name = "运费", width = 15) |
@ApiModelProperty(value = "原订单id") |
||||||
@ApiModelProperty(value = "运费") |
private java.lang.String orderId; |
||||||
private java.lang.Double freight; |
/** |
||||||
/**促销*/ |
* 下单时间 |
||||||
@Excel(name = "促销", width = 15) |
*/ |
||||||
@ApiModelProperty(value = "促销") |
@Excel(name = "下单时间", width = 15, format = "yyyy-MM-dd HH:mm:ss") |
||||||
private java.lang.Double promotionPrice; |
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
||||||
/**实付款*/ |
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||||
@Excel(name = "实付款", width = 15) |
@ApiModelProperty(value = "下单时间") |
||||||
@ApiModelProperty(value = "实付款") |
private java.util.Date orderTime; |
||||||
private java.lang.Double actualPayment; |
/** |
||||||
/**交货期*/ |
* 订单编号 |
||||||
@Excel(name = "交货期", width = 15) |
*/ |
||||||
@ApiModelProperty(value = "交货期") |
@Excel(name = "订单编号", width = 15) |
||||||
private java.lang.Integer deliveryTime; |
@ApiModelProperty(value = "订单编号") |
||||||
/**订单类型*/ |
private java.lang.String ordersNum; |
||||||
@Excel(name = "订单类型", width = 15, dicCode = "orders_type") |
/** |
||||||
@Dict(dicCode = "orders_type") |
* 总金额 |
||||||
@ApiModelProperty(value = "订单类型") |
*/ |
||||||
private java.lang.Integer ordersType; |
@Excel(name = "总金额", width = 15) |
||||||
/**顾客id*/ |
@ApiModelProperty(value = "总金额") |
||||||
@Excel(name = "顾客id", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username") |
private java.lang.Double money; |
||||||
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "id") |
/** |
||||||
@ApiModelProperty(value = "顾客id") |
* 运费 |
||||||
private java.lang.String userId; |
*/ |
||||||
/**商品条目数量*/ |
@Excel(name = "运费", width = 15) |
||||||
@Excel(name = "商品条目数量", width = 15) |
@ApiModelProperty(value = "运费") |
||||||
@ApiModelProperty(value = "商品条目数量") |
private java.lang.Double freight; |
||||||
private java.lang.Integer goodsQuantity; |
/** |
||||||
/**支付方式*/ |
* 促销 |
||||||
@Excel(name = "支付方式", width = 15, dicCode = "payment_method") |
*/ |
||||||
@Dict(dicCode = "payment_method") |
@Excel(name = "促销", width = 15) |
||||||
@ApiModelProperty(value = "支付方式") |
@ApiModelProperty(value = "促销") |
||||||
private java.lang.Integer paymentMethod; |
private java.lang.Double promotionPrice; |
||||||
/**支付状态*/ |
/** |
||||||
@Excel(name = "支付状态", width = 15, dicCode = "payment_status") |
* 实付款 |
||||||
@Dict(dicCode = "payment_status") |
*/ |
||||||
@ApiModelProperty(value = "支付状态") |
@Excel(name = "实付款", width = 15) |
||||||
private java.lang.Integer paymentStatus; |
@ApiModelProperty(value = "实付款") |
||||||
/**账号/卡号*/ |
private java.lang.Double actualPayment; |
||||||
@Excel(name = "账号/卡号", width = 15) |
/** |
||||||
@ApiModelProperty(value = "账号/卡号") |
* 交货期 |
||||||
private java.lang.String accountNo; |
*/ |
||||||
/**开户银行*/ |
@Excel(name = "交货期", width = 15) |
||||||
@Excel(name = "开户银行", width = 15) |
@ApiModelProperty(value = "交货期") |
||||||
@ApiModelProperty(value = "开户银行") |
private java.lang.Integer deliveryTime; |
||||||
private java.lang.String bankDeposit; |
/** |
||||||
/**支付时间*/ |
* 订单类型 |
||||||
@Excel(name = "支付时间", width = 15, format = "yyyy-MM-dd hh:mm:ss") |
*/ |
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") |
@Excel(name = "订单类型", width = 15, dicCode = "orders_type") |
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
@Dict(dicCode = "orders_type") |
||||||
@ApiModelProperty(value = "支付时间") |
@ApiModelProperty(value = "订单类型") |
||||||
private java.util.Date paymentTime; |
private java.lang.Integer ordersType; |
||||||
/**城市*/ |
/** |
||||||
@Excel(name = "城市", width = 15) |
* 顾客id |
||||||
@ApiModelProperty(value = "城市") |
*/ |
||||||
private java.lang.String cityId; |
@Excel(name = "顾客id", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username") |
||||||
/**地址*/ |
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "id") |
||||||
@Excel(name = "地址", width = 15) |
@ApiModelProperty(value = "顾客id") |
||||||
@ApiModelProperty(value = "地址") |
private java.lang.String userId; |
||||||
private java.lang.String address; |
/** |
||||||
/**邮编*/ |
* 商品条目数量 |
||||||
@Excel(name = "邮编", width = 15) |
*/ |
||||||
@ApiModelProperty(value = "邮编") |
@Excel(name = "商品条目数量", width = 15) |
||||||
private java.lang.String zipCode; |
@ApiModelProperty(value = "商品条目数量") |
||||||
/**收货人*/ |
private java.lang.Integer goodsQuantity; |
||||||
@Excel(name = "收货人", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username") |
/** |
||||||
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username") |
* 支付方式 |
||||||
@ApiModelProperty(value = "收货人") |
*/ |
||||||
private java.lang.String receiver; |
@Excel(name = "支付方式", width = 15, dicCode = "payment_method") |
||||||
/**联系电话*/ |
@Dict(dicCode = "payment_method") |
||||||
@Excel(name = "联系电话", width = 15) |
@ApiModelProperty(value = "支付方式") |
||||||
@ApiModelProperty(value = "联系电话") |
private java.lang.Integer paymentMethod; |
||||||
private java.lang.String mobile; |
/** |
||||||
/**发票客户类型*/ |
* 支付状态 |
||||||
@Excel(name = "发票客户类型", width = 15, dicCode = "invoice_customer_type") |
*/ |
||||||
@Dict(dicCode = "invoice_customer_type") |
@Excel(name = "支付状态", width = 15, dicCode = "payment_status") |
||||||
@ApiModelProperty(value = "发票客户类型") |
@Dict(dicCode = "payment_status") |
||||||
private java.lang.Integer invoiceCustomerType; |
@ApiModelProperty(value = "支付状态") |
||||||
/**发票类型*/ |
private java.lang.Integer paymentStatus; |
||||||
@Excel(name = "发票类型", width = 15, dicCode = "invoice_type") |
/** |
||||||
@Dict(dicCode = "invoice_type") |
* 账号/卡号 |
||||||
@ApiModelProperty(value = "发票类型") |
*/ |
||||||
private java.lang.Integer invoiceType; |
@Excel(name = "账号/卡号", width = 15) |
||||||
/**纳税人识别号*/ |
@ApiModelProperty(value = "账号/卡号") |
||||||
@Excel(name = "纳税人识别号", width = 15) |
private java.lang.String accountNo; |
||||||
@ApiModelProperty(value = "纳税人识别号") |
/** |
||||||
private java.lang.String taxIdentificationNumber; |
* 开户银行 |
||||||
/**开票地址*/ |
*/ |
||||||
@Excel(name = "开票地址", width = 15) |
@Excel(name = "开户银行", width = 15) |
||||||
@ApiModelProperty(value = "开票地址") |
@ApiModelProperty(value = "开户银行") |
||||||
private java.lang.String addressBilling; |
private java.lang.String bankDeposit; |
||||||
/**电话*/ |
/** |
||||||
@Excel(name = "电话", width = 15) |
* 支付时间 |
||||||
@ApiModelProperty(value = "电话") |
*/ |
||||||
private java.lang.String telephone; |
@Excel(name = "支付时间", width = 15, format = "yyyy-MM-dd hh:mm:ss") |
||||||
/**公户开户行*/ |
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
||||||
@Excel(name = "公户开户行", width = 15) |
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||||
@ApiModelProperty(value = "公户开户行") |
@ApiModelProperty(value = "支付时间") |
||||||
private java.lang.String bankPublic; |
private java.util.Date paymentTime; |
||||||
/**公户账号*/ |
/** |
||||||
@Excel(name = "公户账号", width = 15) |
* 城市 |
||||||
@ApiModelProperty(value = "公户账号") |
*/ |
||||||
private java.lang.String accountNumber; |
@Excel(name = "城市", width = 15) |
||||||
/**销售门店*/ |
@ApiModelProperty(value = "城市") |
||||||
@Excel(name = "销售门店", width = 15, dictTable = "sys_depart", dicText = "depart_name", dicCode = "id") |
private java.lang.String cityId; |
||||||
@Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "id") |
/** |
||||||
@ApiModelProperty(value = "销售门店") |
* 地址 |
||||||
private java.lang.String salesEnterpriseId; |
*/ |
||||||
/**销售员*/ |
@Excel(name = "地址", width = 15) |
||||||
@Excel(name = "销售员", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username") |
@ApiModelProperty(value = "地址") |
||||||
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username") |
private java.lang.String address; |
||||||
@ApiModelProperty(value = "销售员") |
/** |
||||||
private java.lang.String salespersonId; |
* 邮编 |
||||||
/**物流企业*/ |
*/ |
||||||
@Excel(name = "物流企业", width = 15, dictTable = "sys_depart", dicText = "depart_name", dicCode = "id") |
@Excel(name = "邮编", width = 15) |
||||||
@Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "id") |
@ApiModelProperty(value = "邮编") |
||||||
@ApiModelProperty(value = "物流企业") |
private java.lang.String zipCode; |
||||||
private java.lang.String logisticsEnterprisesId; |
/** |
||||||
/**交付状态*/ |
* 收货人 |
||||||
@Excel(name = "交付状态", width = 15, dicCode = "delivery_status") |
*/ |
||||||
@Dict(dicCode = "delivery_status") |
@Excel(name = "收货人", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username") |
||||||
@ApiModelProperty(value = "交付状态") |
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username") |
||||||
private java.lang.Integer deliveryStatus; |
@ApiModelProperty(value = "收货人") |
||||||
|
private java.lang.String receiver; |
||||||
/**是否虚拟订单*/ |
/** |
||||||
@Dict(dicCode = "isvirtual") |
* 联系电话 |
||||||
@ApiModelProperty(value = "是否虚拟订单") |
*/ |
||||||
private java.lang.String isvirtual; |
@Excel(name = "联系电话", width = 15) |
||||||
} |
@ApiModelProperty(value = "联系电话") |
||||||
|
private java.lang.String mobile; |
||||||
|
/** |
||||||
|
* 发票客户类型 |
||||||
|
*/ |
||||||
|
@Excel(name = "发票客户类型", width = 15, dicCode = "invoice_customer_type") |
||||||
|
@Dict(dicCode = "invoice_customer_type") |
||||||
|
@ApiModelProperty(value = "发票客户类型") |
||||||
|
private java.lang.Integer invoiceCustomerType; |
||||||
|
/** |
||||||
|
* 发票类型 |
||||||
|
*/ |
||||||
|
@Excel(name = "发票类型", width = 15, dicCode = "invoice_type") |
||||||
|
@Dict(dicCode = "invoice_type") |
||||||
|
@ApiModelProperty(value = "发票类型") |
||||||
|
private java.lang.Integer invoiceType; |
||||||
|
/** |
||||||
|
* 纳税人识别号 |
||||||
|
*/ |
||||||
|
@Excel(name = "纳税人识别号", width = 15) |
||||||
|
@ApiModelProperty(value = "纳税人识别号") |
||||||
|
private java.lang.String taxIdentificationNumber; |
||||||
|
/** |
||||||
|
* 开票地址 |
||||||
|
*/ |
||||||
|
@Excel(name = "开票地址", width = 15) |
||||||
|
@ApiModelProperty(value = "开票地址") |
||||||
|
private java.lang.String addressBilling; |
||||||
|
/** |
||||||
|
* 电话 |
||||||
|
*/ |
||||||
|
@Excel(name = "电话", width = 15) |
||||||
|
@ApiModelProperty(value = "电话") |
||||||
|
private java.lang.String telephone; |
||||||
|
/** |
||||||
|
* 公户开户行 |
||||||
|
*/ |
||||||
|
@Excel(name = "公户开户行", width = 15) |
||||||
|
@ApiModelProperty(value = "公户开户行") |
||||||
|
private java.lang.String bankPublic; |
||||||
|
/** |
||||||
|
* 公户账号 |
||||||
|
*/ |
||||||
|
@Excel(name = "公户账号", width = 15) |
||||||
|
@ApiModelProperty(value = "公户账号") |
||||||
|
private java.lang.String accountNumber; |
||||||
|
/** |
||||||
|
* 销售门店 |
||||||
|
*/ |
||||||
|
@Excel(name = "销售门店", width = 15, dictTable = "sys_depart", dicText = "depart_name", dicCode = "id") |
||||||
|
@Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "id") |
||||||
|
@ApiModelProperty(value = "销售门店") |
||||||
|
private java.lang.String salesEnterpriseId; |
||||||
|
/** |
||||||
|
* 销售员 |
||||||
|
*/ |
||||||
|
@Excel(name = "销售员", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username") |
||||||
|
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username") |
||||||
|
@ApiModelProperty(value = "销售员") |
||||||
|
private java.lang.String salespersonId; |
||||||
|
/** |
||||||
|
* 物流企业 |
||||||
|
*/ |
||||||
|
@Excel(name = "物流企业", width = 15, dictTable = "sys_depart", dicText = "depart_name", dicCode = "id") |
||||||
|
@Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "id") |
||||||
|
@ApiModelProperty(value = "物流企业") |
||||||
|
private java.lang.String logisticsEnterprisesId; |
||||||
|
/** |
||||||
|
* 交付状态 |
||||||
|
* 值:未支付0、已支付1、待生产中2、生产中3、已发货4、已到货5、已签收6、申请撤销8、已撤销9,默认0 |
||||||
|
*/ |
||||||
|
@Excel(name = "交付状态", width = 15, dicCode = "delivery_status") |
||||||
|
@Dict(dicCode = "delivery_status") |
||||||
|
@ApiModelProperty(value = "交付状态") |
||||||
|
private java.lang.Integer deliveryStatus; |
||||||
|
|
||||||
|
/** |
||||||
|
* 是否虚拟订单 |
||||||
|
*/ |
||||||
|
@Dict(dicCode = "isvirtual") |
||||||
|
@ApiModelProperty(value = "是否虚拟订单") |
||||||
|
private java.lang.String isvirtual; |
||||||
|
} |
||||||
|
@ -0,0 +1,30 @@ |
|||||||
|
package org.jeecg.modules.productplan.entity.vo; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
import lombok.experimental.Accessors; |
||||||
|
import org.jeecg.modules.team.vo.GroupxMemeberVo; |
||||||
|
import org.jeecg.modules.team.vo.StationVo; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
@Data |
||||||
|
@EqualsAndHashCode(callSuper = false) |
||||||
|
@Accessors(chain = true) |
||||||
|
public class ChanXianShiShiXinXiVo implements Serializable { |
||||||
|
|
||||||
|
private static final long serialVersionUID = 1009888L; |
||||||
|
|
||||||
|
//工单id
|
||||||
|
private String workOrderId; |
||||||
|
|
||||||
|
// private String departId;
|
||||||
|
// private String departName;
|
||||||
|
|
||||||
|
//工位
|
||||||
|
private String stationName; |
||||||
|
|
||||||
|
// private String groupName;
|
||||||
|
private String processName; |
||||||
|
} |
@ -0,0 +1,16 @@ |
|||||||
|
package org.jeecg.modules.workorder.vo; |
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
import org.jeecg.modules.demo.zyorders.entity.ZyOrders; |
||||||
|
import org.jeecg.modules.workorder.entity.WorkOrder; |
||||||
|
|
||||||
|
|
||||||
|
@Data |
||||||
|
@ApiModel(value = "WorkOrderVo", description = "WorkOrderVo") |
||||||
|
public class WorkOrderVo extends WorkOrder { |
||||||
|
|
||||||
|
@ApiModelProperty(value = "订单信息") |
||||||
|
private ZyOrders ordersInfo; |
||||||
|
} |
Loading…
Reference in new issue