SGGL_SHJ/SGGL/Model/HJGL/PreDesign/PackagingManage/PackagingManageInput.cs

64 lines
1.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
/// <summary>
/// 包装管理输入参数
/// </summary>
public class PackagingManageInput
{
/// <summary>
/// 主键
/// </summary>
public string PackagingManageId { get; set; }
/// <summary>
/// 包装编号
/// </summary>
public string PackagingCode { get; set; }
/// <summary>
/// 项目id
/// </summary>
public string ProjectId { get; set; }
/// <summary>
/// 项目名称
/// </summary>
public string ProjectName { get; set; }
/// <summary>
/// 联系人姓名
/// </summary>
public string ContactName { get; set; }
/// <summary>
/// 联系人电话
/// </summary>
public string ContactPhone { get; set; }
/// <summary>
/// 预制工作包
/// </summary>
public string StackingPosition { get; set; }
/// <summary>
/// 状态
/// </summary>
public int? State { get; set; }
/// <summary>
/// 接收人
/// </summary>
public string ReceiveMan { get; set; }
/// <summary>
/// 接收时间
/// </summary>
public string ReceiveDate { get; set; }
/// <summary>
/// 车次id
/// </summary>
public string TrainNumberId { get; set; }
/// <summary>
/// 是否关联车次true:已关联, false:未关联, null:不筛选)
/// </summary>
public bool? HasTrainNumber { get; set; }
}
}