Cms.Core/Cms.Core.Entity/ZhiboSystemRoom.cs

39 lines
1.5 KiB
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;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Cms.Core.Entity
{
public class ZhiboSystemRoom
{
[Key]
public int Id { get; set; }
public string? Title { get; set; }// 标题
public string? Cmsmemo { get; set; } //CMS后台专用备注用不对外公开
public string? Memo { get; set; }//简介
public string? Content { get; set; }//详细
public string? Img { get; set; }//图片
public string? Banner { get; set; }//图片
public string? Bannerbig { get; set; }//图片
public int Orders { get; set; }// 排序
public int Status { get; set; }
public int Deptid { get; set; }
public string? Sharetxt { get; set; }
public string? Sharethumb { get; set; }
public int Pcmodelid { get; set; }
public int H5modelid { get; set; }
public int Checktype { get; set; }//判断是否收集手机号
public int Authtype { get; set; }//强制获取头像昵称
public string? Authappid { get; set; }//强制获取头像昵称使用的APPid
public int Commentcleantype { get; set; } //评论清屏
public int Giftid { get; set; }
public string? Contact { get; set; }//客服功能
public int Contactstatus { get; set; }//开启客服功能
public string? Assignremark { get; set; }
public int? Assigngroupid { get; set; }
}
}