Commit 84fd5c64 authored by 吴春's avatar 吴春

提交代码

parent c61157e8
using System;
using System.Collections.Generic;
using System.Text;
using VT.FW.DB;
namespace Edu.Model.Entity.Advertising
{
/// <summary>
/// 广告基础信息
/// </summary>
[Serializable]
[DB(ConnectionName = "DefaultConnection")]
public class Rb_Advertising
{
/// <summary>
/// 编号
/// </summary>
public int ID
{
get;
set;
}
/// <summary>
/// 图片路径
/// </summary>
public string PictureUrl
{
get;
set;
}
/// <summary>
/// 示例图片
/// </summary>
public string SamplePicturesUrl
{
get;
set;
}
/// <summary>
/// 状态
/// </summary>
public int? Status
{
get;
set;
}
/// <summary>
/// 名称
/// </summary>
public string Title
{
get;
set;
}
/// <summary>
/// 标签
/// </summary>
public string Lable { get; set; }
/// <summary>
/// 集团编号
/// </summary>
public int Group_Id { get; set; }
/// <summary>
/// 学校编号
/// </summary>
// public int School_Id { get; set; }
/// <summary>
/// 收费金额
/// </summary>
public decimal? ChargeAmount
{
get;
set;
}
/// <summary>
/// 是否收费 1收2不收
/// </summary>
public int? IsFee
{
get;
set;
}
/// <summary>
/// 创建时间
/// </summary>
public DateTime? CreateDate { get; set; }
/// <summary>
/// 创建人
/// </summary>
public int? CreateBy { get; set; }
}
}
using System;
using System.Collections.Generic;
using System.Text;
using VT.FW.DB;
namespace Edu.Model.Entity.Advertising
{
/// <summary>
/// 广告制作
/// </summary>
[Serializable]
[DB(ConnectionName = "DefaultConnection")]
public class Rb_Advertising_Make
{
/// <summary>
/// 编号
/// </summary>
public int ID
{
get;
set;
}
/// <summary>
/// 操作时间
/// </summary>
public DateTime? UpdateDate
{
get;
set;
}
/// <summary>
/// 集团编号
/// </summary>
public int Group_Id { get; set; }
/// <summary>
/// 学校编号
/// </summary>
public int School_Id { get; set; }
/// <summary>
/// 状态
/// </summary>
public Common.Enum.DateStateEnum? Status
{
get;
set;
}
/// <summary>
/// 操作人
/// </summary>
public int? UpdateBy
{
get;
set;
}
/// <summary>
/// 关联广告id
/// </summary>
public int? AdvertisingID
{
get;
set;
}
/// <summary>
/// 内容
/// </summary>
public string Content
{
get;
set;
}
/// <summary>
/// 广告图片路径
/// </summary>
public string AdvertisingPicUrl { get; set; }
/// <summary>
/// 文件MD5
/// </summary>
public string SecretKey { get; set; }
}
}
using System;
using System.Collections.Generic;
using System.Text;
using Edu.Model.Entity.Advertising;
namespace Edu.Model.ViewModel.Advertising
{
public class Rb_Advertising_Extend : Rb_Advertising
{
/// <summary>
/// 标签
/// </summary>
public List<string> LableList { get; set; }
/// <summary>
/// 广告数量
/// </summary>
public int AdvertisingCount { get; set; }
}
}
using System;
using System.Collections.Generic;
using System.Text;
using Edu.Model.Entity.Advertising;
namespace Edu.Model.ViewModel.Advertising
{
public class Rb_Advertising_Make_Extend: Rb_Advertising_Make
{
/// <summary>
/// 基础广告名称
/// </summary>
public string Title { get; set; }
/// <summary>
/// 图片路径
/// </summary>
public string PictureUrl
{
get;
set;
}
/// <summary>
/// 示例图片
/// </summary>
public string SamplePicturesUrl
{
get;
set;
}
/// <summary>
/// 收费金额
/// </summary>
public decimal? ChargeAmount
{
get;
set;
}
/// <summary>
/// 是否收费
/// </summary>
public int? IsFee
{
get;
set;
}
}
}
using System;
using System.Collections.Generic;
using Edu.Common.Plugin;
using Edu.Model.Entity.Advertising;
using Edu.Model.ViewModel.Advertising;
using Edu.Repository.Advertising;
using VT.FW.DB;
namespace Edu.Module.Advertising
{
public class AdvertisingModule
{
private Rb_AdvertisingRepository repository = new Rb_AdvertisingRepository();
/// <summary>
/// 广告基础信息处理类
/// </summary>
private Rb_Advertising_MakeRepository advertisingMakeRepository = new Rb_Advertising_MakeRepository();
#region 广告制作
/// <summary>
/// 获取创建的广告信息
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="model"></param>
/// <param name="count"></param>
/// <returns></returns>
public List<Rb_Advertising_Make_Extend> GetPageList(int pageIndex, int pageSize, Rb_Advertising_Make_Extend model, out long count)
{
return advertisingMakeRepository.GetPage(pageIndex, pageSize, model, out count);
}
/// <summary>
/// 获取广告信息
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
public List<Rb_Advertising_Make_Extend> GetList(Rb_Advertising_Make_Extend model)
{
return advertisingMakeRepository.Get(model);
}
/// <summary>
/// 添加修改
/// </summary>
/// <param name="model"></param>
/// <param name="fileName"></param>
/// <param name="fileSize"></param>
/// <returns></returns>
public int Set(Rb_Advertising_Make_Extend model, string fileName, long fileSize)
{
int Id = 0;
if (model.ID > 0)
{
Id = model.ID;
IDictionary<string, object> fileds = new Dictionary<string, object>()
{
{ nameof(Rb_Advertising_Make.SecretKey),model.SecretKey},
{ nameof(Rb_Advertising_Make.AdvertisingPicUrl),model.AdvertisingPicUrl},
{ nameof(Rb_Advertising_Make.Content),model.Content},
};
IList<WhereHelper> whereHelpers = new List<WhereHelper>()
{
new WhereHelper (){ FiledName=nameof(Rb_Advertising_Make.ID),FiledValue=model.ID,OperatorEnum=OperatorEnum.Equal}
};
advertisingMakeRepository.Update(fileds, whereHelpers);
}
else
{
Id = advertisingMakeRepository.Insert(model);
}
return Id;
}
/// <summary>
/// 删除
/// </summary>
/// <param name="ID"></param>
/// <param name="EmployeeId"></param>
/// <returns></returns>
public bool Remove(int ID, int EmployeeId)
{
IDictionary<string, object> fileds = new Dictionary<string, object>()
{
{ nameof(Rb_Advertising_Make_Extend.Status),(int) Common.Enum.DateStateEnum.Delete},
};
IList<WhereHelper> whereHelpers = new List<WhereHelper>()
{
new WhereHelper (){ FiledName=nameof(Rb_Advertising_Make_Extend.ID),FiledValue=ID,OperatorEnum=OperatorEnum.Equal}
};
bool flag = advertisingMakeRepository.Update(fileds, whereHelpers);
return flag;
}
#endregion
#region 广告管理
/// <summary>
/// 新增修改广告基础信息
/// </summary>
/// <param name="dmodel"></param>
public bool SetAdvertising(Rb_Advertising_Extend dmodel)
{
bool flag = false;
int ID = 0;
try
{
if (dmodel.ID > 0)
{
ID = dmodel.ID;
var bamodel = repository.GetEntity(dmodel.ID);
bamodel.ChargeAmount = dmodel.ChargeAmount;
bamodel.IsFee = dmodel.IsFee;
bamodel.Title = dmodel.Title;
bamodel.Lable = dmodel.Lable;
// bamodel.PictureUrl = dmodel.PictureUrl;
// bamodel.SamplePicturesUrl = dmodel.SamplePicturesUrl;
flag = repository.Update(bamodel);
}
else
{
Rb_Advertising model = dmodel.RefMapperTo<Rb_Advertising>();
model.Status = 0;
ID = repository.Insert(model);
}
}
catch (Exception ex)
{
LogHelper.Write(ex, "SetAdvertising");
return false;
}
return true;
}
/// <summary>
/// 获取广告列表
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="count"></param>
/// <param name="lineId"></param>
/// <param name="seriesId"></param>
/// <param name="countryId"></param>
/// <param name="advName"></param>
/// <param name="IsFee"></param>
/// <param name="RB_Group_id"></param>
/// <returns></returns>
public List<Rb_Advertising_Extend> GetAdvertisingList(int pageIndex, int pageSize, out long count, string advName, int IsFee, int RB_Group_id)
{
var list = repository.GetAdvertisingList(pageIndex, pageSize, out count, advName, IsFee, RB_Group_id);
return list;
}
/// <summary>
/// 根据where 查询列表
/// </summary>
/// <param name="lineId"></param>
/// <param name="seriesId"></param>
/// <param name="countryId"></param>
/// <param name="advName"></param>
/// <param name="RB_Group_id"></param>
/// <returns></returns>
public List<Rb_Advertising_Extend> GetAdvertsingListForComboBox( string advName, int RB_Group_id)
{
var list = repository.GetAdvertsingListForComboBox( advName, RB_Group_id);
return list;
}
/// <summary>
/// 删除广告
/// </summary>
/// <param name="bAID"></param>
public bool DelAdvertising(int bAID)
{
try
{
var fileds = new Dictionary<string, object>
{
{ nameof(Rb_Advertising.Status), 1},
};
var whereHelpers = new List<WhereHelper>
{
new WhereHelper()
{
FiledName = nameof(Rb_Advertising.ID),
FiledValue = bAID,
OperatorEnum = OperatorEnum.Equal
}
};
var flag = repository.Update(fileds, whereHelpers);
}
catch (Exception ex)
{
LogHelper.Write(ex, "DelAdvertising");
return false;
}
return true;
}
/// <summary>
/// 获取实体详情
/// </summary>
/// <param name="bAID"></param>
/// <returns></returns>
public Rb_Advertising GetAdvertsingInfo(int bAID)
{
return repository.GetEntity(bAID);
}
#endregion
}
}
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Edu.Model\Edu.Model.csproj" />
<ProjectReference Include="..\Edu.Repository\Edu.Repository.csproj" />
</ItemGroup>
</Project>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Edu.Model.Entity.Advertising;
using Edu.Model.ViewModel.Advertising;
namespace Edu.Repository.Advertising
{
/// <summary>
/// 广告仓储层
/// </summary>
public class Rb_AdvertisingRepository : BaseRepository<Rb_Advertising>
{
/// <summary>
/// 广告列表
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="count"></param>
/// <param name="lineId"></param>
/// <param name="seriesId"></param>
/// <param name="countryId"></param>
/// <param name="advName"></param>
/// <param name="IsFee"></param>
/// <param name="RB_Group_id"></param>
/// <returns></returns>
public List<Rb_Advertising_Extend> GetAdvertisingList(int pageIndex, int pageSize, out long count, string advName, int IsFee, int RB_Group_id)
{
string where = $@" where 1=1 and A.{nameof(Rb_Advertising.Group_Id)}={RB_Group_id} and A.{nameof(Rb_Advertising.Status)}=0";
if (IsFee > 0)
{
where += $@" and A.{nameof(Rb_Advertising.IsFee)}={IsFee}";
}
if (!string.IsNullOrWhiteSpace(advName))
{
where += $@" and A.{nameof(Rb_Advertising.Title)} like '%{advName}%'";
}
string sql = $@"select *,(SELECT count(*) from Rb_Advertising_Make where `Status`=0 and AdvertisingID=A.ID) as AdvertisingCount from {nameof(Rb_Advertising)} AS A {where} order by A.{nameof(Rb_Advertising.CreateDate)} desc";
return GetPage<Rb_Advertising_Extend>(pageIndex, pageSize, out count, sql).ToList();
}
/// <summary>
/// 根据where 查询列表
/// </summary>
/// <param name="lineId"></param>
/// <param name="seriesId"></param>
/// <param name="countryId"></param>
/// <param name="advName"></param>
/// <param name="RB_Group_id"></param>
/// <returns></returns>
public List<Rb_Advertising_Extend> GetAdvertsingListForComboBox( string advName, int RB_Group_id)
{
string where = $@" where 1=1 and {nameof(Rb_Advertising.Group_Id)}={RB_Group_id} and {nameof(Rb_Advertising.Status)}=0";
if (!string.IsNullOrWhiteSpace(advName))
{
where += $@" and {nameof(Rb_Advertising.Title)} like '%{advName}%'";
}
return Get<Rb_Advertising_Extend>($@"select * from {nameof(Rb_Advertising)} {where} order by {nameof(Rb_Advertising.CreateDate)} desc").ToList();
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Edu.Model.Entity.Advertising;
using Edu.Model.ViewModel.Advertising;
namespace Edu.Repository.Advertising
{
public class Rb_Advertising_MakeRepository : BaseRepository<Rb_Advertising_Make>
{
/// <summary>
/// 表名称
/// </summary>
public string TableName { get { return nameof(Rb_Advertising_Make); } }
/// <summary>
/// 获取创建的广告信息
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="model"></param>
/// <param name="count"></param>
/// <returns></returns>
public List<Rb_Advertising_Make_Extend> GetPage(int pageIndex, int pageSize, Rb_Advertising_Make_Extend model, out long count)
{
string where = $@" where 1=1 and {nameof(Rb_Advertising_Make.Status)}={(int)Common.Enum.DateStateEnum.Normal}";
if (model.School_Id > 0)
{
where += $@" and {nameof(Rb_Advertising_Make.School_Id)}={model.School_Id}";
}
if (model.Group_Id > 0)
{
where += $@" and {nameof(Rb_Advertising_Make.Group_Id)}={model.Group_Id}";
}
if (model.UpdateBy > 0)
{
where += $@" and {nameof(Rb_Advertising_Make.UpdateBy)}={model.UpdateBy}";
}
string sql = $@" select * from {TableName} {where} ";
return GetPage<Rb_Advertising_Make_Extend>(pageIndex, pageSize, out count, sql).ToList();
}
/// <summary>
/// 获取广告信息
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
public List<Rb_Advertising_Make_Extend> Get(Rb_Advertising_Make_Extend model)
{
string where = $@" where 1=1 and A.{nameof(Rb_Advertising_Make.Status)}={(int)Common.Enum.DateStateEnum.Normal}";
if (model.School_Id > 0)
{
where += $@" and {nameof(Rb_Advertising_Make.School_Id)}={model.School_Id}";
}
if (model.Group_Id > 0)
{
where += $@" and {nameof(Rb_Advertising_Make.Group_Id)}={model.Group_Id}";
}
if (model.UpdateBy > 0)
{
where += $@" and A.{nameof(Rb_Advertising_Make.UpdateBy)}={model.UpdateBy}";
}
if (model.ID > 0)
{
where += $@" and A.{nameof(Rb_Advertising_Make.ID)}={model.ID}";
}
string sql = $@" SELECT A.*,B.Title,b.PictureUrl,b.SamplePicturesUrl,b.ChargeAmount,b.IsFee from {TableName} AS A LEFT JOIN rb_advertising as B
ON A.AdvertisingID = B.ID {where}";
return Get<Rb_Advertising_Make_Extend>(sql).ToList();
}
/// <summary>
/// 获取广告信息
/// </summary>
/// <param name="ids">广告id</param>
/// <returns></returns>
public List<Rb_Advertising_Make_Extend> GetListByIds(List<int> ids)
{
List<Rb_Advertising_Make_Extend> sellAdvertisingList = new List<Rb_Advertising_Make_Extend>();
if (ids.Count > 0)
{
string sql = $@" SELECT * from Rb_Advertising_Make a where a.ID in ({string.Join(",", ids)}) and a.`Status` = 0";
sellAdvertisingList = Get<Rb_Advertising_Make_Extend>(sql).ToList();
}
return sellAdvertisingList;
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Edu.Common.API;
using Edu.Common.Plugin;
using Edu.Model.CacheModel;
using Edu.Model.ViewModel.Advertising;
using Edu.Module.Advertising;
using Edu.WebApi.Filter;
using Microsoft.AspNetCore.Cors;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace Edu.WebApi.Controllers.Advertising
{
[Route("api/[controller]/[action]")]
[ApiExceptionFilter]
[ApiController]
[EnableCors("AllowCors")]
public class AdvertisingController : BaseController
{
/// <summary>
/// 广告处理对象
/// </summary>
private readonly AdvertisingModule advertisingModule = AOP.AOPHelper.CreateAOPObject<AdvertisingModule>();
#region 广告管理
/// <summary>
/// 新增修改广告基础信息
/// </summary>
/// <param name="request"></param>
/// <returns></returns>
[HttpPost]
public ApiResult SetAdvertising()
{
UserInfo userInfo = base.UserInfo;
Rb_Advertising_Extend dmodel = new Rb_Advertising_Extend
{
IsFee = base.ParmJObj.GetInt("IsFee"),
ChargeAmount = base.ParmJObj.GetDecimal("ChargeAmount"),
PictureUrl = base.ParmJObj.GetStringValue("PictureUrl"),
SamplePicturesUrl = base.ParmJObj.GetStringValue("SamplePicturesUrl"),
Title = base.ParmJObj.GetStringValue("Title"),
ID = base.ParmJObj.GetInt("ID", 0)
};
try
{
dmodel.LableList = Common.Plugin.JsonHelper.DeserializeObject<List<string>>(base.ParmJObj.GetStringValue("LableList"));
}
catch (Exception ex)
{
dmodel.LableList = new List<string>();
Common.Plugin.LogHelper.Write(ex, "SetAdvertising");
}
if (dmodel.LableList != null && dmodel.LableList.Any())
{
dmodel.Lable = Common.Plugin.JsonHelper.Serialize(dmodel.LableList);
}
else
{
dmodel.Lable = "";
}
if (dmodel.IsFee == 1)
{
if (!dmodel.ChargeAmount.HasValue && dmodel.ChargeAmount <= 0)
{
return ApiResult.ParamIsNull("请输入收费金额!");
}
}
if (dmodel.ID == 0)
{
dmodel.CreateDate = System.DateTime.Now;
dmodel.CreateBy = userInfo.Id;
dmodel.Group_Id = userInfo.Group_Id;
}
bool flag = advertisingModule.SetAdvertising(dmodel);
if (flag)
{
return ApiResult.Success();
}
else
{
return ApiResult.Failed();
}
}
/// <summary>
/// 删除广告
/// </summary>
/// <param name="request"></param>
/// <returns></returns>
[HttpPost]
public ApiResult DelAdvertising()
{
var BAID = base.ParmJObj.GetInt("BAID");
if (BAID <= 0)
{
return ApiResult.ParamIsNull();
}
var flag = advertisingModule.DelAdvertising(BAID);
if (flag)
{
return ApiResult.Success();
}
else
{
return ApiResult.Failed();
}
}
/// <summary>
/// 获取广告列表
/// </summary>
/// <param name="request"></param>
/// <returns></returns>
[HttpPost]
public ApiResult GetAdvertisingList()
{
UserInfo userInfo = base.UserInfo;
ResultPageModel pmodel = JsonConvert.DeserializeObject<ResultPageModel>(RequestParm.Msg.ToString());
int IsFee = base.ParmJObj.GetInt("IsFee", 0);
string AdvName = base.ParmJObj.GetStringValue("AdvName");
List<Rb_Advertising_Extend> list = advertisingModule.GetAdvertisingList(pmodel.PageIndex, pmodel.PageSize, out long count, AdvName, IsFee, userInfo.Group_Id);
list.ForEach(x => x.LableList = !string.IsNullOrWhiteSpace(x.Lable) ? JsonConvert.DeserializeObject<List<string>>(x.Lable) : new List<string>());
pmodel.Count = Convert.ToInt32(count.ToString());
pmodel.PageData = list.Select(x => new
{
x.ID,
x.Title,
PictureUrl = x.PictureUrl ?? "",
SamplePicturesUrl = x.SamplePicturesUrl ?? "",
x.IsFee,
x.ChargeAmount,
x.AdvertisingCount,
x.LableList
});
return ApiResult.Success("", pmodel);
}
/// <summary>
/// 获取广告详情
/// </summary>
/// <param name="request"></param>
/// <returns></returns>
[HttpPost]
public ApiResult GetAdvertsingInfo()
{
int BAID = base.ParmJObj.GetInt("BAID", 0);
if (BAID <= 0)
{
return ApiResult.ParamIsNull();
}
var model = advertisingModule.GetAdvertsingInfo(BAID);
if (model != null)
{
List<string> LableList = new List<string>();
if (!string.IsNullOrWhiteSpace(model.Lable))
{
LableList = JsonConvert.DeserializeObject<List<string>>(model.Lable);
}
var obj = new
{
model.ID,
model.Lable,
model.PictureUrl,
model.SamplePicturesUrl,
model.Status,
model.Title,
model.ChargeAmount,
model.IsFee,
model.Group_Id,
CreateDate = model.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss"),
model.CreateBy,
LableList
};
return ApiResult.Success("请求成功!", obj);
}
else
{
return ApiResult.Failed("请求失败,数据不存在!");
}
}
/// <summary>
/// 根据where 查询列表
/// </summary>
/// <param name="request"></param>
/// <returns></returns>
[HttpPost]
public ApiResult GetAdvertsingListForComboBox()
{
UserInfo userInfo = base.UserInfo;
string AdvName = base.ParmJObj.GetStringValue("AdvName");
List<Rb_Advertising_Extend> list = advertisingModule.GetAdvertsingListForComboBox(AdvName, userInfo.Group_Id);
var list1 = list.Select(x => new
{
x.ID,
x.Title
});
return ApiResult.Success("", list1);
}
#endregion
#region 制作广告
/// <summary>
/// 获取分页列表
/// </summary>
/// <param name="request"></param>
/// <returns></returns>
[HttpPost]
public ApiResult GetPageList()
{
ResultPageModel pmodel = JsonConvert.DeserializeObject<ResultPageModel>(RequestParm.Msg.ToString());
Rb_Advertising_Make_Extend model = JsonConvert.DeserializeObject<Rb_Advertising_Make_Extend>(RequestParm.Msg.ToString());
UserInfo userInfo = base.UserInfo;
model.UpdateBy = userInfo.Id;
var data = advertisingModule.GetPageList(pmodel.PageIndex, pmodel.PageSize, model, out long count);
var list = data.Select(x => new
{
x.ID,
x.Title,
x.Content,
x.AdvertisingPicUrl,
AdvertisingPicUrlStr = x.AdvertisingPicUrl ?? "",
PictureUrl = x.PictureUrl ?? "",
SamplePicturesUrl = x.SamplePicturesUrl ?? "",
x.SecretKey,
x.AdvertisingID
}).ToList();
pmodel.Count = int.Parse(count.ToString());
pmodel.PageData = list;
return ApiResult.Success("", data: pmodel);
}
/// <summary>
/// 通过ID获取信息
/// </summary>
/// <param name="request"></param>
/// <returns></returns>
[HttpPost]
public ApiResult Get()
{
UserInfo userInfo = base.UserInfo;
int ID = base.ParmJObj.GetInt("ID");
if (ID == 0)
{
return ApiResult.Failed("请求参数错误!");
}
Rb_Advertising_Make_Extend model = advertisingModule.GetList(new Rb_Advertising_Make_Extend { ID = ID }).FirstOrDefault();
if (model != null)
{
var obj = new
{
model.ID,
model.Title,
model.SecretKey,
model.Content,
AdvertisingPicUrlStr = model.AdvertisingPicUrl ?? "",
PictureUrl = model.PictureUrl ?? "",
SamplePicturesUrl = model.SamplePicturesUrl ?? "",
model.AdvertisingID
};
return ApiResult.Success("请求成功!", data: obj);
}
else
{
return ApiResult.Failed("请求失败,数据不存在!");
}
}
/// <summary>
/// 添加修改
/// </summary>
/// <param name="request"></param>
/// <returns></returns>
[HttpPost]
public ApiResult Set()
{
UserInfo userInfo = base.UserInfo;
Rb_Advertising_Make_Extend model = JsonConvert.DeserializeObject<Rb_Advertising_Make_Extend>(RequestParm.Msg.ToString());
string fileName = base.ParmJObj.GetStringValue("fileName");
long fileSize = base.ParmJObj.GetLong("fileSize");
if (model.AdvertisingID == 0)
{
return ApiResult.Failed("请关联广告!");
}
if (string.IsNullOrWhiteSpace(model.Content))
{
return ApiResult.Failed("请填写广告内容!");
}
model.School_Id = userInfo.School_Id;
model.Group_Id = userInfo.Group_Id;
model.UpdateBy = userInfo.Id;
model.UpdateDate = System.DateTime.Now;
model.Status = (int)Common.Enum.DateStateEnum.Normal;
int ID = advertisingModule.Set(model, fileName, fileSize);
if (ID > 0)
return ApiResult.Success("保存成功", new { result = ID });
else
return ApiResult.Failed("请求失败!");
}
/// <summary>
/// 删除
/// </summary>
/// <param name="request"></param>
/// <returns></returns>
[HttpPost]
public ApiResult Remove()
{
int ID = base.ParmJObj.GetInt("ID");
UserInfo userInfo = base.UserInfo;
bool flag = advertisingModule.Remove(ID, userInfo.Id);
if (flag)
return ApiResult.Success();
else
return ApiResult.Failed("请求失败!");
}
#endregion
}
}
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
<ProjectReference Include="..\Edu.Cache\Edu.Cache.csproj" /> <ProjectReference Include="..\Edu.Cache\Edu.Cache.csproj" />
<ProjectReference Include="..\Edu.Common\Edu.Common.csproj" /> <ProjectReference Include="..\Edu.Common\Edu.Common.csproj" />
<ProjectReference Include="..\Edu.Model\Edu.Model.csproj" /> <ProjectReference Include="..\Edu.Model\Edu.Model.csproj" />
<ProjectReference Include="..\Edu.Module.Advertising\Edu.Module.Advertising.csproj" />
<ProjectReference Include="..\Edu.Module.Course\Edu.Module.Course.csproj" /> <ProjectReference Include="..\Edu.Module.Course\Edu.Module.Course.csproj" />
<ProjectReference Include="..\Edu.Module.Duty\Edu.Module.Duty.csproj" /> <ProjectReference Include="..\Edu.Module.Duty\Edu.Module.Duty.csproj" />
<ProjectReference Include="..\Edu.Module.Finance\Edu.Module.Finance.csproj" /> <ProjectReference Include="..\Edu.Module.Finance\Edu.Module.Finance.csproj" />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment