96 lines
2.3 KiB
C#
96 lines
2.3 KiB
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.CSVR_RECORDSHARED")]
|
|
public partial class CSVR_RECORDSHARED
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
public decimal? RECORDID { get; set; }
|
|
|
|
[StringLength(150)]
|
|
public string SERVERID { get; set; }
|
|
|
|
[StringLength(150)]
|
|
public string FILENAME { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string RESID { get; set; }
|
|
|
|
[StringLength(32)]
|
|
public string SERVICENUMBER { get; set; }
|
|
|
|
[StringLength(32)]
|
|
public string TELNUMBERLAST4 { get; set; }
|
|
|
|
public decimal? TIMELENGTH { get; set; }
|
|
|
|
public decimal? SALESEID { get; set; }
|
|
|
|
public DateTime? TIMESTART { get; set; }
|
|
|
|
public DateTime? TIMEEND { get; set; }
|
|
|
|
public DateTime CTIME { get; set; }
|
|
|
|
public decimal RECORDSHAREDTYPE { get; set; }
|
|
|
|
public decimal RECORDTYPEID { get; set; }
|
|
|
|
[StringLength(1000)]
|
|
public string MEMO { get; set; }
|
|
|
|
public decimal? INNERUSERID { get; set; }
|
|
|
|
public string BIGTYPE { get; set; }
|
|
|
|
public string SUBTYPE { get; set; }
|
|
|
|
public decimal? SALESUSERID { get; set; }
|
|
}
|
|
|
|
public partial class CSVR_RECORDSHAREDVIEW
|
|
{
|
|
public decimal PKID { get; set; }
|
|
|
|
public decimal? RECORDID { get; set; }
|
|
|
|
public string SERVERID { get; set; }
|
|
|
|
public string FILENAME { get; set; }
|
|
|
|
public string RESID { get; set; }
|
|
public string UMID { get; set; }
|
|
|
|
public string SERVICENUMBER { get; set; }
|
|
|
|
public string TELNUMBERLAST4 { get; set; }
|
|
|
|
public decimal? TIMELENGTH { get; set; }
|
|
|
|
public decimal? SALESEID { get; set; }
|
|
|
|
public DateTime? TIMESTART { get; set; }
|
|
|
|
public DateTime? TIMEEND { get; set; }
|
|
|
|
public DateTime CTIME { get; set; }
|
|
|
|
public decimal RECORDSHAREDTYPE { get; set; }
|
|
|
|
public decimal RECORDTYPEID { get; set; }
|
|
public string MEMO { get; set; }
|
|
|
|
public decimal? INNERUSERID { get; set; }
|
|
|
|
public string BIGTYPE { get; set; }
|
|
|
|
public string SUBTYPE { get; set; }
|
|
|
|
public decimal? SALESUSERID { get; set; }
|
|
}
|
|
} |