TG.WXCRM.V4/Model/Entity/WX_FAST_USERNAME.cs

55 lines
1.5 KiB
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.WX_FAST_USERNAME")]
public class WX_FAST_USERNAME
{
[Key]
/// <summary>
/// 批次号
/// </summary>
public decimal PICI { get; set; }
/// <summary>
/// 工作微信用户名
/// </summary>
public string JOBUSERNAME { get; set; }
/// <summary>
/// 工作微信号
/// </summary>
public string JOBALIAS { get; set; }
/// <summary>
/// 工作微信昵称
/// </summary>
public string JOBNICKNAME { get; set; }
/// <summary>
/// 位置时间Linux时间
/// </summary>
public decimal POSITIONTIME { get; set; }
/// <summary>
/// 位置时间datetime时间
/// </summary>
public DateTime POSITIONSTR { get; set; }
/// <summary>
/// 时间
/// </summary>
public DateTime CTIME { get; set; }
/// <summary>
/// 修改时间
/// </summary>
public DateTime? UTIME { get; set; }
/// <summary>
/// 状态 200:已完成 100:正常执行指令 70:新指令
/// </summary>
public decimal STATUS { get; set; }
/// <summary>
/// 随机码
/// </summary>
public string CODE { get; set; }
}
}