using System.ComponentModel.DataAnnotations.Schema; namespace Znyc.CloudCar.Model.Entities { [Table("user_card")] public class UserCardEntity : EntityBase { /// /// /// public long UserId { get; set; } /// /// /// public long CardId { get; set; } /// /// 开始时间 /// public DateTime StartTime { get; set; } /// /// 结束时间 /// public DateTime EndTime { get; set; } } }