|
@@ -517,6 +517,22 @@ namespace OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice
|
|
|
|
|
|
return result;
|
|
|
}
|
|
|
+
|
|
|
+ public static string GroupDateTime_ToVisaUser(GroupDateTime_ToVisaUser info)
|
|
|
+ {
|
|
|
+ string result = string.Format(@" `团组时间通知`
|
|
|
+
|
|
|
+<font color='info'>详细时间</font>
|
|
|
+
|
|
|
+>团组名称:{0}
|
|
|
+>更新时间:<font color='warning'>{1}</font>
|
|
|
+><font color='comment'>开始时间:{2}</font>
|
|
|
+><font color='comment'>结束时间:{3}</font>
|
|
|
+
|
|
|
+ ", info.TeamName, info.RefreshDate, info.StartTime, info.EndTime);
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
|
|
@@ -636,6 +652,16 @@ namespace OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice
|
|
|
public string RefreshDate { get; set; }
|
|
|
}
|
|
|
|
|
|
+ public class GroupDateTime_ToVisaUser
|
|
|
+ {
|
|
|
+ public string TeamName { get; set; }
|
|
|
+ public string RefreshDate { get; set; }
|
|
|
+
|
|
|
+ public string StartTime { get; set; }
|
|
|
+
|
|
|
+ public string EndTime { get; set; }
|
|
|
+ }
|
|
|
+
|
|
|
#endregion
|
|
|
|
|
|
}
|