Sign in

wms / hhwms · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • hhwms
  • ..
  • domain
  • U8Material.java
  • 添加 产成品入库扫描
    fff2cfb2
    tongzhonghao authored
    2022-10-09 08:46:45 +0800  
    Browse Code »
U8Material.java 341 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package com.huaheng.pc.receipt.U8.domain;

import lombok.Data;

import java.math.BigDecimal;

@Data
public class U8Material {
    /** 数量 */
    private BigDecimal Qty;
    /** 物料编码 */
    private String itemcode;
    /** 工单子件行ID */
    private String AllocateId;
    /** 库存id */
    private Integer inventoryId;

}