using System; using System.Collections.Generic; namespace MySystem { public class ReceiverList { public string type { get; set; } //分账接收方类型 public string account { get; set; } //分账接收方账号 public int amount { get; set; } //分账金额 public string description { get; set; } //分账描述 } }