Zxd.Core/code/Zxd.Entity/Dncms/WeworkAgent.cs

24 lines
611 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Entity.Dncms
{
[Table("WeworkAgent")]
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; }
}
}