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 = "info_client_item", DisableSyncStructure = true)]
public partial class InfoClientItem {
///
/// 惟一值
///
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper();
///
/// 创建时间
///
[JsonProperty, Column(InsertValueSql = "getdate()")]
public DateTime? CREATETIME { get; set; }
///
/// 创建人gid
///
[JsonProperty, Column(DbType = "varchar(36)")]
public string CREATEUSER { get; set; } = "";
///
/// 结束时间
///
[JsonProperty]
public DateTime? ENDTIME { get; set; }
///
/// 项目名称
///
[JsonProperty, Column(DbType = "varchar(100)")]
public string ITEMNAME { get; set; } = "";
///
/// 客户GID
///
[JsonProperty, Column(DbType = "varchar(36)")]
public string LINKGID { get; set; } = "";
///
/// 最后一次更改时间
///
[JsonProperty, Column(InsertValueSql = "getdate()")]
public DateTime? MODIFIEDTIME { get; set; }
///
/// 更改操作人gid
///
[JsonProperty, Column(DbType = "varchar(36)")]
public string MODIFIEDUSER { get; set; } = "";
///
/// 起始时间
///
[JsonProperty]
public DateTime? STARTTIME { get; set; }
}
}