| | |
| | | import com.zy.asrs.service.BasProcessProceduresService; |
| | | import com.zy.asrs.service.BasQualityTestingService; |
| | | import com.zy.asrs.service.OrderService; |
| | | import com.zy.common.utils.Synchro; |
| | | import com.zy.system.entity.User; |
| | | import com.zy.system.service.UserService; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.beans.BeanUtils; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.io.Serializable; |
| | |
| | | import java.util.Objects; |
| | | |
| | | @Data |
| | | @TableName("man_order_detl_pakin_log") |
| | | @TableName("man_order_detl_log_pakin") |
| | | public class OrderDetlPakinLog implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | * ID |
| | | */ |
| | | @ApiModelProperty(value = "ID") |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | @TableId(value = "id") |
| | | private Long id; |
| | | |
| | | /** |
| | |
| | | @ApiModelProperty(value = "重量") |
| | | private Double weight; |
| | | |
| | | /** |
| | | * 长度 |
| | | */ |
| | | @ApiModelProperty(value = "长度") |
| | | @TableField("man_length") |
| | | private Double manLength; |
| | | // /** |
| | | // * 长度 |
| | | // */ |
| | | // @ApiModelProperty(value = "长度") |
| | | // @TableField("man_length") |
| | | // private Double manLength; |
| | | |
| | | /** |
| | | * 体积 |
| | |
| | | this.itemNum = itemNum; |
| | | this.safeQty = safeQty; |
| | | this.weight = weight; |
| | | this.manLength = manLength; |
| | | // this.manLength = manLength; |
| | | this.volume = volume; |
| | | this.threeCode = threeCode; |
| | | this.supp = supp; |
| | |
| | | } |
| | | |
| | | public void sync(Object source) { |
| | | Synchro.Copy(source, this); |
| | | BeanUtils.copyProperties(source, this); |
| | | } |
| | | |
| | | } |