NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiServindustryExerciseR...

39 lines
1.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiServindustryExerciseRecordSyncModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiServindustryExerciseRecordSyncModel : AopObject
{
/// <summary>
/// 数据版本号。linux时间戳到毫秒级别。如果同步数据的版本号小于口碑服务器已有数据的版本号则会被丢弃。
/// </summary>
[XmlElement("data_version")]
public string DataVersion { get; set; }
/// <summary>
/// 口碑用户健身唯一ID和支付宝userId一一对应
/// </summary>
[XmlElement("fitness_id")]
public string FitnessId { get; set; }
/// <summary>
/// 健身记录列表,每个记录是一天的全量记录
/// </summary>
[XmlArray("record_list")]
[XmlArrayItem("exercise_record_open_model")]
public List<ExerciseRecordOpenModel> RecordList { get; set; }
/// <summary>
/// 口碑店铺ID
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}