ChouBox/ChouBox.Model/Entities/Advert.cs
2025-04-23 19:20:23 +08:00

55 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
public partial class Advert
{
public int Id { get; set; }
/// <summary>
/// 图片
/// </summary>
public string Imgurl { get; set; } = null!;
/// <summary>
/// 跳转路径
/// </summary>
public string? Url { get; set; }
/// <summary>
/// 排序
/// </summary>
public uint Sort { get; set; }
/// <summary>
/// 类型 1首页轮播图 2抽卡机轮播图
/// </summary>
public byte Type { get; set; }
/// <summary>
/// 添加时间
/// </summary>
public uint Addtime { get; set; }
/// <summary>
/// 修改时间
/// </summary>
public uint UpdateTime { get; set; }
/// <summary>
/// 跳转类型 0不跳转 1优惠券 2一番赏 3无限赏
/// </summary>
public byte? Ttype { get; set; }
/// <summary>
/// 优惠券id
/// </summary>
public uint? CouponId { get; set; }
/// <summary>
/// 盒子id
/// </summary>
public uint? GoodsId { get; set; }
}