ZHJA_HJGL/HJGL_ZH/Model/APIItem/UsingPlanItem.cs

149 lines
2.2 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;
namespace Model.APIItem
{
public class UsingPlanItem
{ /**
* 主键
*/
public string UsingPlanId { get; set; }
/**
* 焊材ID
*/
public string WeldId { get; set; }
/**
* 项目ID
*/
public string ProjectId { get; set; }
/// <summary>
/// 项目名称
/// </summary>
public string ProjectName { get; set; }
/// <summary>
/// 施工号
/// </summary>
public string ProjectCode { get; set; }
/**
* 焊缝
*/
public string UsePosition { get; set; }
/**
* 数量
*/
public decimal? Amount { get; set; }
/**
* 第一领料人
*/
public string UsingManOne { get; set; }
public string UsingManOneName { get; set; }
/**
* 第二领料人
*/
public string UsingManTwo { get; set; }
public string UsingManTwoName { get; set; }
/**
* 录入时间
*/
public DateTime? InPutDate { get; set; }
/**
* 作废时间
*/
public DateTime? CancelDate { get; set; }
/**
* 是否作废
*/
public bool? IsCancel { get; set; }
/**
* 结束人指保管员
*/
public string FinishMan { get; set; }
/**
* 预约领料时间
*/
public string OrderTime { get; set; }
/**
* 预约日期
*/
public DateTime? OrderDate { get; set; }
/**
* 作废原因
*/
public string CancelResult { get; set; }
/**
* 是否提交
*/
public bool? IsSubmit { get; set; }
/**
* 领用单位
*/
public string UsingUnit { get; set; }
public string UsingUnitName { get; set; }
/**
* 是否需要确认(空-正常true-需要确认false-已确认)
*/
public bool? IsNeedConfirm { get; set; }
/**
* 录入人
*/
public string InPutMan { get; set; }
public string InPutManName { get; set; }
/**
* 是否钢结构
*/
public bool? IsSteelStru { get; set; }
public string TeamGroupId { get; set; }
public string TeamGroupName { get; set; }
public string STE_ID { get; set; }
public bool? IsFinish { get; set; }
public string STE_Name { get; set; }
public string WeldName { get; set; }
public string WeldSpec { get; set; }
}
}