修改实体名称

booking_auth_dev
wet 2 years ago
parent f7795b6587
commit 79062cef2e

@ -26,6 +26,7 @@ using Myshipping.Application.Service.BookingOrder.Dto;
using Myshipping.Application.ConfigOption;
using System.IO;
using Yitter.IdGenerator;
using Myshipping.Core.Entity;
namespace Myshipping.Application
{
@ -42,10 +43,11 @@ namespace Myshipping.Application
private readonly SqlSugarRepository<BookingLogDetail> _bookinglogdetail;
private readonly SqlSugarRepository<BookingRemark> _bookingremark;
private readonly SqlSugarRepository<BookingFile> _bookingfile;
SqlSugarRepository<DjyWebsiteAccountConfig> _webconfig
private readonly ILogger<BookingOrderService> _logger;
public BookingOrderService(SqlSugarRepository<BookingOrder> rep, SqlSugarRepository<BookingCtn> repCtn, SqlSugarRepository<BookingCtnDetail> ctndetailrep,
SqlSugarRepository<BookingLog> bookinglog, SqlSugarRepository<BookingLogDetail> bookinglogdetail, SqlSugarRepository<BookingRemark> bookingremark,
SqlSugarRepository<BookingFile> bookingfile,
SqlSugarRepository<BookingFile> bookingfile, SqlSugarRepository<DjyWebsiteAccountConfig> webconfig,
ILogger<BookingOrderService> logger)
{
this._logger = logger;
@ -56,6 +58,7 @@ namespace Myshipping.Application
this._bookinglogdetail = bookinglogdetail;
this._bookingremark = bookingremark;
this._bookingfile = bookingfile;
this._webconfig = webconfig;
}
/// <summary>
@ -239,6 +242,14 @@ namespace Myshipping.Application
CreatedUserId = UserManager.UserId,
CreatedUserName = UserManager.Name
});
if (input.YARD!=null&&input.YARDID!=null) {
}
}
/// <summary>
@ -492,5 +503,8 @@ namespace Myshipping.Application
}
}

@ -0,0 +1,36 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application.Service.BookingOrder.Dto
{
public class BillTraceDto
{
public string Key { get; set; }
public string PWD { get; set; }
public List<BillTraceList> Children { get; set; }
}
public class BillTraceList
{
public string MBLNO { get; set; }
public string YARD { get; set; }
public string YardCode { get; set; }
public string CARRIERID { get; set; }
public string CARRIER { get; set; }
public bool isBook { get; set; }
}
}

@ -1,35 +0,0 @@
using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Core.Entity
{
/// <summary>
/// 租户参数类别表
/// </summary>
[SugarTable("djy_tenant_param")]
[Description("租户参数类别表")]
public class DjyTenantParam : PrimaryKeyEntity
{
/// <summary>
/// 类别代码
/// </summary>
public string ParaCode { get; set; }
/// <summary>
/// 类别名称
/// </summary>
public string ParaName { get; set; }
/// <summary>
/// 业务大类
/// </summary>
public string Type { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
/// <summary>
/// 排序
/// </summary>
public int? Sort { get; set; }
}
}

@ -1,35 +0,0 @@
using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Core.Entity
{
/// <summary>
/// 租户参数定义
/// </summary>
[SugarTable("djy_tenant_param_item")]
[Description("租户参数定义")]
public class DjyTenantParamItem : PrimaryKeyEntity
{
/// <summary>
/// 租户参数类别
/// </summary>
public string ParaCode { get; set; }
/// <summary>
/// 租户参数代码
/// </summary>
public string ItemCode { get; set; }
/// <summary>
/// 租户参数名称
/// </summary>
public string ItemName { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
/// <summary>
/// 排序
/// </summary>
public int? Sort { get; set; }
}
}

@ -1,35 +0,0 @@
using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Core.Entity
{
/// <summary>
/// 租户参数表
/// </summary>
[SugarTable("djy_tenant_param_value")]
[Description("租户参数表")]
public class DjyTenantParamValue : PrimaryKeyEntity
{
/// <summary>
/// 参数类别
/// </summary>
public string ParaCode { get; set; }
/// <summary>
/// 租户id
/// </summary>
public long? TenantId { get; set; }
/// <summary>
/// 参数
/// </summary>
public string ItemCode { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
/// <summary>
/// 排序
/// </summary>
public int? Sort { get; set; }
}
}
Loading…
Cancel
Save