using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VOL.DingTalk.Models { /* "dingtalk": { "corp_id": "dingec656045526ce9c0ee0f45d8e4f7c288", "app_key": "dingtl9hb00ktdkguzrh", "app_secret": "NkWagc8VEhdZyjEPkK0oYbi_ZzqVMHLelmFWdGswBjh2zGgSt0UWLj1W58xNHwfv", "agent_id": 3973173455 }, */ public class DingTalkConfig { public string CorpId = "dingec656045526ce9c0ee0f45d8e4f7c288"; public string AppKey = "dingtl9hb00ktdkguzrh"; public string AppSecret = "NkWagc8VEhdZyjEPkK0oYbi_ZzqVMHLelmFWdGswBjh2zGgSt0UWLj1W58xNHwfv"; public long AgentId = 3973173455; public List fields = [ "sys00-name", // 姓名 "sys00-email", // 邮箱 "sys00-mobile", // 手机号 "sys02-certNo", // 证件号码 "sys02-birthTime", // 出生日期 "sys02-sexType", // 性别 "sys00-dept", // 部门 "sys00-jobNumber" // 工号 ]; } }