步步为盈
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
603 B

2 years ago
using System;
namespace BBWY.Client.Models
{
/// <summary>
/// 个人收入情况
/// </summary>
public class UserFeesModel : NotifyObject
{
/// <summary>
/// 主键
/// </summary>
public long Id { get; set; }
/// <summary>
/// 成员id
/// </summary>
public string UserId { get; set; }
/// <summary>
/// 收费
/// </summary>
public decimal Fees { get; set; }
/// <summary>
/// 日期
/// </summary>
public DateTime DateTime { get; set; }
}
}