package com.huaheng.pc.shipment.shippingCombination.domain; import com.huaheng.framework.web.domain.BaseEntity; import lombok.Data; import java.math.BigDecimal; import java.util.Date; @Data public class ShippingCombinationDetailModel extends BaseEntity { Integer id; String shipmentCode; String locationCode; int shipmentDetailId; String materialCode; String materialName; String materialSpec; String specification; BigDecimal qty; String containerCode; String warehouseCode; String userName; Date createTime; //头表对应的状态 int status; //期望生成的任务类型 Integer taskTypeReal; String project; String zoneCode; }