|
@@ -0,0 +1,110 @@
|
|
|
+using MathNet.Numerics.Statistics;
|
|
|
+using System.ComponentModel;
|
|
|
+
|
|
|
+namespace OASystem.API.OAMethodLib.QiYeWeChatAPI.AppNotice
|
|
|
+{
|
|
|
+ public enum QiyeWeChatEnum
|
|
|
+ {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [Description("groupstatuschat01")]
|
|
|
+ TestChat = 0,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [Description("CompanyCRMChat01")]
|
|
|
+ CompanyCRMChat = 1,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [Description("MarketCRMChat01")]
|
|
|
+ MarketCRMChat,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [Description("CaiWuChat01")]
|
|
|
+ CaiWuChat,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [Description("GuoJiaoLeader01")]
|
|
|
+ GuoJiaoLeaderChat,
|
|
|
+ }
|
|
|
+
|
|
|
+ public class MarkdownLib
|
|
|
+ {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public static string GroupStatus_Create(GroupStatus_CreateModel info)
|
|
|
+ {
|
|
|
+ string result = string.Format(@" `确认出团`
|
|
|
+
|
|
|
+>**团组基本信息**
|
|
|
+>团组名称:<font color='info'>{0}</font>
|
|
|
+
|
|
|
+>团组类型:{1}
|
|
|
+>出访日期:<font color='comment'>{2}</font>
|
|
|
+>出访人数/天数:{3}人/{4}天
|
|
|
+>客户单位:{5}
|
|
|
+>客户名称:{6}
|
|
|
+
|
|
|
+[详细信息请前往OA系统查看](http:
|
|
|
+", info.TeamName, info.TeamDid_Text, info.VisitDateRange, info.VisitPNumber, info.VisitDays, info.ClientUnit, info.ClientName);
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public static string GroupStatus_ApplyFee()
|
|
|
+ {
|
|
|
+ string result = string.Format(@" `费用审核`
|
|
|
+
|
|
|
+>团组:<font color='info'>雅安市经合和外事局赴美国 6日</font>
|
|
|
+
|
|
|
+<font color='comment'>- </font>新增一笔需要审核的费用
|
|
|
+
|
|
|
+>费用模块:签证
|
|
|
+>费用名称:<font color='warning'>于冀川等6人</font>
|
|
|
+>此次付款金额:<font color='warning'>8850.00 CNY</font>
|
|
|
+
|
|
|
+>申请人:李敏
|
|
|
+>申请时间:<font color='comment'>2024-05-06 17:21</font>
|
|
|
+
|
|
|
+<font color='comment'>- </font>当前团组费用待审核数量: 1
|
|
|
+
|
|
|
+[详细信息请前往OA系统查看](http:
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ #region 实体类
|
|
|
+
|
|
|
+ public class GroupStatus_ApplyFeeModel { }
|
|
|
+
|
|
|
+ public class GroupStatus_CreateModel
|
|
|
+ {
|
|
|
+ public string TeamName { get; set; }
|
|
|
+ public string TeamDid_Text { get; set; }
|
|
|
+ public string VisitDateRange { get; set; }
|
|
|
+ public int VisitPNumber { get; set; }
|
|
|
+ public int VisitDays { get; set; }
|
|
|
+ public string ClientUnit { get; set; }
|
|
|
+ public string ClientName { get; set; }
|
|
|
+ }
|
|
|
+
|
|
|
+ #endregion
|
|
|
+
|
|
|
+}
|