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