123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- #region Apache License Version 2.0
- #endregion Apache License Version 2.0
- using Senparc.CO2NET.Helpers.Serializers;
- using Senparc.Weixin.Entities;
- using Senparc.Weixin.Helpers;
- namespace Senparc.Weixin.MP.AdvancedAPIs.Card
- {
-
-
-
- public class AddCardAfterPayData
- {
- public Rule_Info rule_info { get; set; }
- }
-
-
-
- public class Rule_Info
- {
-
-
-
- public string type { get; set; }
- public Base_Info base_info { get; set; }
- public Member_Rule member_rule { get; set; }
- }
-
-
-
- public class Base_Info
- {
- public string[] mchid_list { get; set; }
- public int begin_time { get; set; }
- public int end_time { get; set; }
- public string status { get; set; }
- public string create_time { get; set; }
- public string update_time { get; set; }
- }
-
-
-
- public class Member_Rule
- {
- public string card_id { get; set; }
- public int least_cost { get; set; }
- public int max_cost { get; set; }
- public string jump_url { get; set; }
- public string app_brand_id { get; set; }
- public string app_brand_pass { get; set; }
- }
-
-
-
- public class AfterPay_BatchGetData
- {
- public string type { get; set; }
- public bool effective { get; set; }
- public int offset { get; set; }
- public int count { get; set; }
- }
-
-
-
- public class AddPayMemberRuleData
- {
- public string card_id { get; set; }
- public string jump_url { get; set; }
- public string[] mchid_list { get; set; }
- public int begin_time { get; set; }
- public int end_time { get; set; }
- public int min_cost { get; set; }
- public int max_cost { get; set; }
- public bool is_locked { get; set; }
- }
-
-
-
- public class DeletePayMemberRuleData
- {
- public string card_id { get; set; }
- public int[] mchid_list { get; set; }
- }
- }
|