39 lines
1.5 KiB
C#
39 lines
1.5 KiB
C#
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; }
|
||
}
|
||
}
|