using Furion.DatabaseAccessor;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 企业收藏用户
///
public class EnterpriseUserCollect : CommonEntity
{
///
/// 企业Id
///
public Guid EnterpriseId { get; set; }
///
/// 企业
///
public Enterprise Enterprise { get; set; }
///
/// 用户信息Id
///
public Guid UserId { get; set; }
///
/// 用户信息
///
public User User { get; set; }
///
/// 是否已收藏
///
public bool IsCollected { get; set; }
///
/// 收藏时间
///
public DateTime? CollectedTime { get; set; }
///
/// 是否已联系
///
public bool IsContacted { get; set; }
///
/// 联系时间
///
public DateTime? ContactedTime { get; set; }
}
}