123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- #region Apache License Version 2.0
- /*----------------------------------------------------------------
- Copyright 2019 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd.
- Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
- except in compliance with the License. You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software distributed under the
- License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
- either express or implied. See the License for the specific language governing permissions
- and limitations under the License.
- Detail: https://github.com/JeffreySu/WeiXinMPSDK/blob/master/license.md
- ----------------------------------------------------------------*/
- #endregion Apache License Version 2.0
- /*----------------------------------------------------------------
- Copyright (C) 2019 Senparc
-
- 文件名:CardCreateInfo_Card.cs
- 文件功能描述:卡券信息数据中的card字段
-
-
- 创建标识:Senparc - 20150211
-
- 修改标识:Senparc - 20150303
- 修改描述:整理接口
-
- 修改标识:Senparc - 20150323
- 修改描述:添加会议门票
- ----------------------------------------------------------------*/
- namespace Senparc.Weixin.MP.AdvancedAPIs.Card
- {
- /// <summary>
- /// 卡券信息数据中的card字段
- /// </summary>
- public class CardCreateInfo_Card
- {
- public string card_type { get; set; }
- }
- #region 不同卡券类型对应的信息
- /// <summary>
- /// 通用券
- /// </summary>
- public class Card_GeneralCoupon : CardCreateInfo_Card
- {
- public Card_GeneralCouponData general_coupon { get; set; }
- }
- /// <summary>
- /// 团购券
- /// </summary>
- public class Card_Groupon : CardCreateInfo_Card
- {
- public Card_GrouponData groupon { get; set; }
- }
- /// <summary>
- /// 礼品券
- /// </summary>
- public class Card_Gift : CardCreateInfo_Card
- {
- public Card_GiftData gift { get; set; }
- }
- /// <summary>
- /// 代金券
- /// </summary>
- public class Card_Cash : CardCreateInfo_Card
- {
- public Card_CashData cash { get; set; }
- }
- /// <summary>
- /// 折扣券
- /// </summary>
- public class Card_DisCount : CardCreateInfo_Card
- {
- public Card_DisCountData discount { get; set; }
- }
- /// <summary>
- /// 会员卡
- /// </summary>
- public class Card_MemberCard : CardCreateInfo_Card
- {
- public Card_MemberCardData member_card { get; set; }
- }
- /// <summary>
- /// 门票
- /// </summary>
- public class Card_ScenicTicket : CardCreateInfo_Card
- {
- public Card_ScenicTicketData scenic_ticket { get; set; }
- }
- /// <summary>
- /// 电影票
- /// </summary>
- public class Card_MovieTicket : CardCreateInfo_Card
- {
- public Card_MovieTicketData movie_ticket { get; set; }
- }
- /// <summary>
- /// 飞机票
- /// </summary>
- public class Card_BoardingPass : CardCreateInfo_Card
- {
- public Card_BoardingPassData boarding_pass { get; set; }
- }
- /// <summary>
- /// 红包
- /// </summary>
- public class Card_LuckyMoney : CardCreateInfo_Card
- {
- public Card_LuckyMoneyData lucky_money { get; set; }
- }
- /// <summary>
- /// 会议门票
- /// </summary>
- public class Card_MeetingTicket : CardCreateInfo_Card
- {
- public Card_MeetingTicketData meeting_ticket { get; set; }
- }
- #endregion
- public abstract class BaseCardInfo
- {
- /// <summary>
- /// 基本的卡券数据
- /// </summary>
- public Card_BaseInfoBase base_info { get; set; }
- /// <summary>
- /// 卡类型(不在Json数据中)
- /// </summary>
- protected CardType CardType { get; set; }
- public CardType GetCardType()
- {
- return CardType;
- }
- public BaseCardInfo(CardType cardType)
- {
- CardType = cardType;
- }
- }
- }
|