You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.3 KiB
C#
61 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.InterfaceDocking
|
|
{
|
|
public class GetLGInfoEntity
|
|
{
|
|
public GetLGInfoEntity()
|
|
{
|
|
reqTime= DateTime.Now.ToString("yyyy-MM-dd");
|
|
|
|
}
|
|
|
|
public string factory { get; set; } = "999";
|
|
public string reqTime { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class GetLGResJson
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
|
|
public List<GetLGRes> data { get; set; }
|
|
|
|
}
|
|
|
|
|
|
public class GetLGRes
|
|
{
|
|
/// <summary>
|
|
/// 工单id
|
|
/// </summary>
|
|
public string workorderId { get; set; }
|
|
/// <summary>
|
|
/// 料罐编码
|
|
/// </summary>
|
|
public string bucketCode { get; set; }
|
|
/// <summary>
|
|
/// 物料编码
|
|
/// </summary>
|
|
public string materialCode { get; set; }
|
|
/// <summary>
|
|
/// 物料
|
|
/// </summary>
|
|
public string materialName { get; set; }
|
|
/// <summary>
|
|
/// 班次id 5白班 2夜班
|
|
/// </summary>
|
|
public string shiftId { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string workorderCode { get; set; }
|
|
|
|
}
|
|
} |