namespace Admin.NET.Application; /// /// 包装完成对接输出参数 /// public class MesPushPackageCodeOutput { /// /// 主键Id /// public long? Id { get; set; } /// /// 包装号 /// public string PackageCode { get; set; } /// /// 推送状态 /// public Admin.NET.Core.Enum.PushStatusEnum PushStatus { get; set; } /// /// 推送时间 /// public DateTime? PushTime { get; set; } /// /// 返回时间 /// public DateTime? RetTime { get; set; } /// /// 推送次数 /// public int PushNum { get; set; } /// /// 接口返回参数 /// public string ApiMessage { get; set; } /// /// 创建时间 /// public DateTime? CreateTime { get; set; } /// /// 修改时间 /// public DateTime? UpdateTime { get; set; } /// /// 创建人Id /// public long? CreateUserId { get; set; } /// /// 创建人 /// public string CreateUserName { get; set; } /// /// 修改人Id /// public long? UpdateUserId { get; set; } /// /// 修改人 /// public string UpdateUserName { get; set; } /// /// 软删除 /// public bool IsDelete { get; set; } }