37 lines
668 B
C#
37 lines
668 B
C#
using Newtonsoft.Json;
|
|
using OfficeOpenXml.Attributes;
|
|
using SqlSugar;
|
|
using System;
|
|
|
|
namespace ARW.Model.Vo.Api.Advertisement.Banners
|
|
{
|
|
/// <summary>
|
|
/// 轮播图展示对象Api
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-09
|
|
/// </summary>
|
|
public class BannerVoApi
|
|
{
|
|
|
|
/// <summary>
|
|
/// 描述 :位置
|
|
/// </summary>
|
|
public int BannerPosition { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :图片
|
|
/// </summary>
|
|
public string BannerImg { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :排序
|
|
/// </summary>
|
|
public int BannerSort { get; set; }
|
|
|
|
}
|
|
|
|
}
|