【新增】优化广告组件,表【CoreCmsAdvertPosition】新增【platform】广告平台字段,【type】广告位类型两个字段,用于区分pc,h5,小程序多端,以及图片还是轮播图展示形式。

This commit is contained in:
JianWeie
2023-01-10 16:04:48 +08:00
parent 3d8a3436a3
commit 8632c6fb26
21 changed files with 379 additions and 80 deletions

View File

@@ -20,9 +20,14 @@ namespace CoreCms.Net.Model.FromBody
public class WxAdvert
{
/// <summary>
/// 广告位置
/// 广告位置编码
/// </summary>
public string codes { get; set; }
public string code { get; set; }
/// <summary>
/// 广告位值类型
/// </summary>
public int platform { get; set; }
}
#endregion