using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
public partial class Danye
{
///
/// 类型,1服务协议,2隐私政策
///
public uint Id { get; set; }
///
/// 标题
///
public string Title { get; set; } = null!;
///
/// 内容
///
public string Content { get; set; } = null!;
///
/// 修改时间
///
public uint UpdateTime { get; set; }
///
/// 0正常 1隐藏
///
public byte Status { get; set; }
///
/// 是否开启图片优化
///
public sbyte IsImageOptimizer { get; set; }
}