using System.ComponentModel.DataAnnotations; namespace Cms.Core.Entity { public class WeworkAgent { [Key] public int Id { get; set; } public string? Appid { get; set; } public int Agentid { get; set; } public string? Name { get; set; } public string? Secret { get; set; } public int Close { get; set; } public int Deptid { get; set; } public string? Partyid { get; set; } public int? Isdefault { get; set; } } }