Cms.Core/Cms.Core.Entity/Wework.cs

22 lines
575 B
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 Wework
{
[Key]
public int Id { get; set; }
public string? Name { get; set; }
public string? Appid { get; set; }
public int Status { get; set; }
public int Autotype { get; set; } //用户功能自动同步
public int Companyid { get; set; }
public string? Wechatappid { get; set; }
}
}