27 lines
791 B
Java
27 lines
791 B
Java
package com.zhgd.xmgl.entity.vo;
|
|
|
|
import com.zhgd.xmgl.modules.material.entity.MaterialPurchaseOrder;
|
|
import com.zhgd.xmgl.modules.material.entity.MaterialPurchaseOrderItem;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @program: wisdomSite
|
|
* @description:
|
|
* @author: Mr.Peng
|
|
* @create: 2021-06-08 15:25
|
|
**/
|
|
@Data
|
|
@ApiModel(value="MaterialPurchaseOrder实体类",description="MaterialPurchaseOrderVo")
|
|
public class MaterialPurchaseOrderVo extends MaterialPurchaseOrder implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@ApiModelProperty(value="材料采购订单材料明细")
|
|
private List<MaterialPurchaseOrderItem> list;
|
|
|
|
}
|