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.

79 lines
1.7 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
public class ITGoodsStatusDto
{
/// <summary>
/// 订舱编号
/// </summary>
public Nullable<long> bookingid { get; set; }
/// <summary>
/// 状态配置主键
/// </summary>
public Nullable<long> ConfigId { get; set; }
/// <summary>
/// 状态代码
/// </summary>
public string SystemCode { get; set; }
/// <summary>
/// 状态名称
/// </summary>
public string StatusName { get; set; }
/// <summary>
/// 状态完成时间
/// </summary>
public Nullable<DateTime> FinishTime { get; set; }
/// <summary>
/// 状态值
/// </summary>
public string ExtData { get; set; }
/// <summary>
/// 状态备注
/// </summary>
public string Remark { get; set; }
/// <summary>
/// 状态创建人
/// </summary>
public Nullable<long> CreatedUserId { get; set; }
/// <summary>
/// 状态排序值
/// </summary>
public int Sort { get; set; }
}
public class ITConfigsDto
{
public string bookingid { get; set; }
public long ConfigId { get; set; }
public string SystemCode { get; set; }
public string StatusName { get; set; }
public string FinishTime { get; set; }
public string ExtData { get; set; }
public string Remark { get; set; }
public Nullable<long> CreatedUserId { get; set; }
public int Sort { get; set; }
}
}