Zxd.Core/code/Zxd.Entity/Dncms/ResourceFlowLog.cs

72 lines
1.7 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Entity.Dncms
{
[Table("t_resource_flow_log")]
public class ResourceFlowLog
{
[Key]
public int Id { get; set; }
/// <summary>
/// 流转设置id
/// </summary>
[Column("config_id")]
public int ConfigId { get; set; }
/// <summary>
/// 人群包id
/// </summary>
[Column("group_id")]
public int GroupId { get; set; }
/// <summary>
/// 企微id
/// </summary>
public string? Appid { get; set; }
/// <summary>
/// 用户id
/// </summary>
public string? Appuserid { get; set; }
/// <summary>
/// 原联成员id
/// </summary>
[Column("to_userid")]
public string? ToUserid { get; set; }
/// <summary>
/// 目标成员id
/// </summary>
[Column("from_userid")]
public string? FromUserid { get; set; }
/// <summary>
/// 转移时间
/// </summary>
[Column("flow_time")]
public DateTime FlowTime { get; set; }
/// <summary>
/// 状态0.转移中1.转移成功,-1转移失败
/// </summary>
public ResourceFlowStatus Status { get; set; }
/// <summary>
/// 是否离职客服
/// </summary>
[Column("is_dimission")]
public bool? IsDimission { get; set; }
/// <summary>
/// 事业线ID
/// </summary>
public int Deptid { get; set; }
public virtual ResourceFlowConfig? ResourceFlowConfig { get; set; }
}
}