Sign in

wms / wms_guangxijianyi · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • wms_guangxijianyi
  • ..
  • domain
  • PDACheck.java
  • 库存查看功能
    c91482e9
    李泰瑜 authored
    2023-10-20 08:59:33 +0800  
    Browse Code »
PDACheck.java 335 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
package com.huaheng.api.erp.domain;

import lombok.Data;

import java.util.List;


@Data
public class PDACheck {


    //箱数
    Integer boxCodeQty;

    //片数
    Integer chipCodeQty;

    //当前托盘状态
    String information;

    //垛型
    String cribType;

    List<MaterialInformation> materialInformationList;


}