using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace LifePayment.Domain
{
    public class FundAccountbookCreateInput
    {
        /// <summary>
        /// 外部商户系统会员的唯一标识,自定义传入
        /// </summary>
        [JsonProperty("merchant_user_id", NullValueHandling = NullValueHandling.Ignore)]
        [Required]
        public string MerchantUserId
        {
            get;
            set;
        }

        /// <summary>
        /// 外部商户用户类型:BUSINESS_EMPLOYEE
        /// </summary>
        [JsonProperty("merchant_user_type", NullValueHandling = NullValueHandling.Ignore)]
        [Required]
        public string MerchantUserType
        {
            get;
            set;
        }

        /// <summary>
        /// 资金记账本的业务场景
        /// </summary>
        [JsonProperty("scene_code", NullValueHandling = NullValueHandling.Ignore)]
        [Required]
        public string SceneCode
        {
            get;
            set;
        }

        /// <summary>
        /// JSON格式,传递业务扩展参数
        /// </summary>
        [JsonProperty("ext_info", NullValueHandling = NullValueHandling.Ignore)]
        [Required]
        public string ExtInfo
        {
            get;
            set;
        }
    }
}