You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.4 KiB
Plaintext

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using BP.En;
namespace BP.GPM.DTalk.DTS
{
/// <summary>
/// 钉钉组织结构同步
/// </summary>
public class OrgInit_Ding : Method
{
/// <summary>
/// 钉钉组织结构同步
/// </summary>
public OrgInit_Ding()
{
this.Title = "同步钉钉通讯录到CCGPM";
this.Help = "本功能将首先<b style='color:red;'>清空组织结构</b>,然后同步钉钉通讯录。<br> 钉钉相关配置写入Web.config配置正确才可以被执行";
}
/// <summary>
/// 设置执行变量
/// </summary>
/// <returns></returns>
public override void Init()
{
}
/// <summary>
/// 当前的操纵员是否可以执行这个方法
/// </summary>
public override bool IsCanDo
{
get
{
if(BP.WF.Glo.IsEnable_DingDing == true)
return true;
return false;
}
}
/// <summary>
/// 执行
/// </summary>
/// <returns>返回执行结果</returns>
public override object Do()
{
DingDing ding = new DingDing();
bool result = ding.AnsyOrgToCCGPM();
if (result == true)
return "执行成功...";
else
return "执行失败...";
}
}
}