50 lines
1.2 KiB
C#
50 lines
1.2 KiB
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.WX_WORKWEIXIN")]
|
|
public partial class WX_WORKWEIXIN
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string ALIAS { get; set; }
|
|
|
|
public decimal? INNERUSERID { get; set; }
|
|
|
|
public decimal? EID { get; set; }
|
|
|
|
[StringLength(255)]
|
|
public string QRCODEURL { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string MOBILE { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string RESID { get; set; }
|
|
|
|
public decimal? AUDITSTATAUS { get; set; }
|
|
|
|
public DateTime? AUDITTIME { get; set; }
|
|
|
|
[StringLength(1000)]
|
|
public string AUDITMEMO { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string AUDITUSER { get; set; }
|
|
|
|
public decimal? ISVALID { get; set; }
|
|
|
|
public DateTime? PAUSEENDTIME { get; set; }
|
|
|
|
public decimal? QRCODESIZE { get; set; }
|
|
|
|
public decimal? QUANTITY { get; set; }
|
|
}
|
|
}
|