You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123 lines
2.8 KiB
C#
123 lines
2.8 KiB
C#
using FreeSql.DatabaseModel;using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
using FreeSql.DataAnnotations;
|
|
|
|
namespace djy.Model {
|
|
|
|
[JsonObject(MemberSerialization.OptIn), Table(Name = "crm_info_client_visit", DisableSyncStructure = true)]
|
|
public partial class CrmInfoClientVisit {
|
|
|
|
/// <summary>
|
|
/// 潜在客户GID
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)]
|
|
public string CLIENTGID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 客户联系人
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string CONTACTNAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[JsonProperty]
|
|
public DateTime? CREATETIME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string CREATEUSER { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
|
|
public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper();
|
|
|
|
/// <summary>
|
|
/// 是否解锁
|
|
/// </summary>
|
|
[JsonProperty]
|
|
public bool? ISLOCK { get; set; }
|
|
|
|
/// <summary>
|
|
/// 解锁时间
|
|
/// </summary>
|
|
[JsonProperty]
|
|
public DateTime? LOCKTIME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 解锁操作人
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string LOCKUSER { get; set; }
|
|
|
|
/// <summary>
|
|
/// 最后一次更新操作时间
|
|
/// </summary>
|
|
[JsonProperty]
|
|
public DateTime? MODIFIEDTIME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 最后一次更新操作人
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string MODIFIEDUSER { get; set; }
|
|
|
|
/// <summary>
|
|
/// 下次行动
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string NEXTACTION { get; set; }
|
|
|
|
/// <summary>
|
|
/// 下次行动内容
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(1024)")]
|
|
public string NEXTCONTENT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 下次回访时间
|
|
/// </summary>
|
|
[JsonProperty]
|
|
public DateTime? NEXTDATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 销售
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string SALE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 客户简称
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string SHORTNAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 拜访内容
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(1024)")]
|
|
public string VISITCONTENT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 拜访时间
|
|
/// </summary>
|
|
[JsonProperty]
|
|
public DateTime? VISITDATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 拜访方式
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string VISITWAY { get; set; }
|
|
|
|
}
|
|
|
|
}
|