using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
///
/// 货物交接单
///
public class Handoverorder : MonoBehaviour
{
public static Handoverorder Instance;
///
/// 物料描述
///
public Text description;
///
/// 单位
///
public Text unit;
///
/// 合同数量
///
public Text Numberofcontracts;
///
/// 交货日期
///
public Text Deliverydate;
///
/// 发货方
///
public Text Consigner;
private void Awake()
{
Instance = this;
}
void Start()
{
}
void Update()
{
}
}