fixed 修改商品服务与承诺关系 存放位置
This commit is contained in:
parent
deb0903339
commit
38fd7b4ac8
@ -1,9 +1,6 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using ARW.Model.Models.Business.GoodsManager.GoodsServicesRels;
|
|
||||||
|
|
||||||
namespace ARW.Model.Dto.Business.GoodsManager.GoodsServicesRels
|
namespace ARW.Model.Dto.Business.GoodsManager.GoodsServicess.GoodsServicesRels
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 商品服务与承诺关系表输入对象
|
/// 商品服务与承诺关系表输入对象
|
||||||
@ -40,9 +37,9 @@ namespace ARW.Model.Dto.Business.GoodsManager.GoodsServicesRels
|
|||||||
/// @author 黎文豪
|
/// @author 黎文豪
|
||||||
/// @date 2023-06-18
|
/// @date 2023-06-18
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class GoodsServicesRelQueryDto : PagerInfo
|
public class GoodsServicesRelQueryDto : PagerInfo
|
||||||
{
|
{
|
||||||
|
|
||||||
public string ids { get; set; }
|
public string ids { get; set; }
|
||||||
}
|
}
|
||||||
|
|
@ -4,7 +4,7 @@ using SqlSugar;
|
|||||||
using OfficeOpenXml.Attributes;
|
using OfficeOpenXml.Attributes;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace ARW.Model.Models.Business.GoodsManager.GoodsServicesRels
|
namespace ARW.Model.Models.Business.GoodsManager.GoodsServicess.GoodsServicesRels
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 商品服务与承诺关系表,数据实体对象
|
/// 商品服务与承诺关系表,数据实体对象
|
@ -3,7 +3,7 @@ using OfficeOpenXml.Attributes;
|
|||||||
using SqlSugar;
|
using SqlSugar;
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace ARW.Model.Vo.Business.GoodsManager.GoodsServicesRels
|
namespace ARW.Model.Vo.Business.GoodsManager.GoodsServicess.GoodsServicesRels
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 商品服务与承诺关系表展示对象
|
/// 商品服务与承诺关系表展示对象
|
@ -1,9 +1,9 @@
|
|||||||
using System;
|
using System;
|
||||||
using Infrastructure.Attribute;
|
using Infrastructure.Attribute;
|
||||||
using ARW.Repository.System;
|
using ARW.Repository.System;
|
||||||
using ARW.Model.Models.Business.GoodsManager.GoodsServicesRels;
|
using ARW.Model.Models.Business.GoodsManager.GoodsServicess.GoodsServicesRels;
|
||||||
|
|
||||||
namespace ARW.Repository.Business.GoodsManager.GoodsServicesRels
|
namespace ARW.Repository.Business.GoodsManager.GoodsServicess.GoodsServicesRels
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 商品服务与承诺关系表仓储
|
/// 商品服务与承诺关系表仓储
|
@ -9,13 +9,13 @@ using System.Threading.Tasks;
|
|||||||
using Infrastructure;
|
using Infrastructure;
|
||||||
using ARW.Model;
|
using ARW.Model;
|
||||||
using ARW.Repository;
|
using ARW.Repository;
|
||||||
using ARW.Repository.Business.GoodsManager.GoodsServicesRels;
|
using ARW.Model.Dto.Business.GoodsManager.GoodsServicess.GoodsServicesRels;
|
||||||
using ARW.Service.Business.IBusinessService.GoodsManager.GoodsServicesRels;
|
using ARW.Model.Models.Business.GoodsManager.GoodsServicess.GoodsServicesRels;
|
||||||
using ARW.Model.Dto.Business.GoodsManager.GoodsServicesRels;
|
using ARW.Model.Vo.Business.GoodsManager.GoodsServicess.GoodsServicesRels;
|
||||||
using ARW.Model.Models.Business.GoodsManager.GoodsServicesRels;
|
using ARW.Repository.Business.GoodsManager.GoodsServicess.GoodsServicesRels;
|
||||||
using ARW.Model.Vo.Business.GoodsManager.GoodsServicesRels;
|
using ARW.Service.Business.IBusinessService.GoodsManager.GoodsServicess.GoodsServicesRels;
|
||||||
|
|
||||||
namespace ARW.Service.Business.BusinessService.GoodsManager.GoodsServicesRels
|
namespace ARW.Service.Business.BusinessService.GoodsManager.GoodsServicess.GoodsServicesRels
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 商品服务与承诺关系表接口实现类
|
/// 商品服务与承诺关系表接口实现类
|
||||||
@ -30,7 +30,7 @@ namespace ARW.Service.Business.BusinessService.GoodsManager.GoodsServicesRels
|
|||||||
|
|
||||||
public GoodsServicesRelServiceImpl(GoodsServicesRelRepository GoodsServicesRelRepository)
|
public GoodsServicesRelServiceImpl(GoodsServicesRelRepository GoodsServicesRelRepository)
|
||||||
{
|
{
|
||||||
this._GoodsServicesRelRepository = GoodsServicesRelRepository;
|
_GoodsServicesRelRepository = GoodsServicesRelRepository;
|
||||||
}
|
}
|
||||||
|
|
||||||
#region 业务逻辑代码
|
#region 业务逻辑代码
|
@ -4,11 +4,11 @@ using System.Linq;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using ARW.Model;
|
using ARW.Model;
|
||||||
using ARW.Model.Dto.Business.GoodsManager.GoodsServicesRels;
|
using ARW.Model.Dto.Business.GoodsManager.GoodsServicess.GoodsServicesRels;
|
||||||
using ARW.Model.Models.Business.GoodsManager.GoodsServicesRels;
|
using ARW.Model.Models.Business.GoodsManager.GoodsServicess.GoodsServicesRels;
|
||||||
using ARW.Model.Vo.Business.GoodsManager.GoodsServicesRels;
|
using ARW.Model.Vo.Business.GoodsManager.GoodsServicess.GoodsServicesRels;
|
||||||
|
|
||||||
namespace ARW.Service.Business.IBusinessService.GoodsManager.GoodsServicesRels
|
namespace ARW.Service.Business.IBusinessService.GoodsManager.GoodsServicess.GoodsServicesRels
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 商品服务与承诺关系表接口类
|
/// 商品服务与承诺关系表接口类
|
||||||
@ -18,15 +18,15 @@ namespace ARW.Service.Business.IBusinessService.GoodsManager.GoodsServicesRels
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public interface IGoodsServicesRelService : IBaseService<GoodsServicesRel>
|
public interface IGoodsServicesRelService : IBaseService<GoodsServicesRel>
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 获取商品服务与承诺关系表分页列表
|
/// 获取商品服务与承诺关系表分页列表
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="parm"></param>
|
/// <param name="parm"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
Task<PagedInfo<GoodsServicesRelVo>> GetGoodsServicesRelList(GoodsServicesRelQueryDto parm);
|
Task<PagedInfo<GoodsServicesRelVo>> GetGoodsServicesRelList(GoodsServicesRelQueryDto parm);
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 添加或修改商品服务与承诺关系表
|
/// 添加或修改商品服务与承诺关系表
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="parm"></param>
|
/// <param name="parm"></param>
|
Loading…
Reference in New Issue
Block a user