Sign in

wms / wms_changshushengyi · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • wms_changshushengyi
  • ..
  • domain
  • ReleasedResult.java
  • 铜箔仓 二楼放行通知 接口
    76ae27da
    童宗豪 authored
    2023-02-19 22:26:32 +0800  
    Browse Code »
ReleasedResult.java 403 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
package com.huaheng.api.wcs.domain;

public class ReleasedResult {

    public ReleasedResult() {
    }

    public ReleasedResult(int isOut) {
        this.isOut = isOut;
    }

    /**
     * 是否可出 1 表示可出 0 表示不可出
     */
    private int isOut;

    public int getIsOut() {
        return isOut;
    }

    public void setIsOut(int isOut) {
        this.isOut = isOut;
    }
}