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

48 lines
943 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
/// <summary>
/// 福利屋管理
/// </summary>
public partial class WelfareHouse
{
public int Id { get; set; }
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; } = null!;
/// <summary>
/// 图片路径
/// </summary>
public string Image { get; set; } = null!;
/// <summary>
/// 跳转路径
/// </summary>
public string Url { get; set; } = null!;
/// <summary>
/// 排序(数字越小越靠前)
/// </summary>
public int? Sort { get; set; }
/// <summary>
/// 状态0=禁用1=启用
/// </summary>
public bool? Status { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public int? CreateTime { get; set; }
/// <summary>
/// 更新时间
/// </summary>
public int? UpdateTime { get; set; }
}