package com.ecep.contract.vo; import com.ecep.contract.model.IdentityEntity; import lombok.Data; @Data public class PurchaseOrderItemVo implements IdentityEntity { private Integer id; private Integer purchaseOrderId; private Integer contractItemId; private Integer inventoryId; private String itemName; private Integer unitId; private Double quantity; private Double unitPrice; private Double totalPrice; private Double taxRate; private Double taxAmount; private Double totalAmount; private Integer order; private String remark; }