ReceiverList.cs 370 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem
  4. {
  5. public class ReceiverList
  6. {
  7. public string type { get; set; } //分账接收方类型
  8. public string account { get; set; } //分账接收方账号
  9. public int amount { get; set; } //分账金额
  10. public string description { get; set; } //分账描述
  11. }
  12. }