using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace YD_WeChatApplet.Api.Entitys
{
///
/// 我的播放列表表
///
[Table("WCA_MyPlayList")]
public class WCA_MyPlayList
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
[Display(Description = "主键Id")]
[Comment("Id")]
public int Id { get; set; }
///
///资源类型
///
[Display(Name = "资源类型")]
[Comment("资源类型")]
[Column(TypeName = "int")]
public int ResourceType { get; set; }
///
///用户Id
///
[Display(Name = "用户Id")]
[Comment("用户Id")]
[Column(TypeName = "int")]
public int UserId { get; set; }
///
///资源详情Id
///
[Display(Name = "资源详情Id")]
[Comment("资源详情Id")]
[Column(TypeName = "int")]
public int ResourceDetailsId { get; set; }
}
}