Sign in

wms / wms_xianyangming · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • wms_xianyangming
  • ..
  • domain
  • MesMaterial.java
  • 创建物料出入库任务接口
    f24d045d
    CEO王总 authored
    2022-11-22 09:05:27 +0800  
    Browse Code »
MesMaterial.java 395 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
package com.huaheng.api.mes.domain;

import lombok.Data;

@Data
public class MesMaterial {

    private String materialCode;

    private Integer qty;

    private Integer sequence;

    public MesMaterial(){};

    public MesMaterial(String materialCode,Integer qty,Integer sequence){
        this.materialCode = materialCode;
        this.qty = qty;
        this.sequence = sequence;
    }

}