using Datory.Annotations;
namespace GxPress.Entity
{
///
/// 用户头像管理
///
[DataTable("tede_user_avatar")]
public class UserAvatar : Datory.Entity
{
///
/// 用户ID
///
///
public int UserId { get; set; }
///
/// 头像地址
///
///
public string AvatarUrl { get; set; }
}
}