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 = "cw_cfs_model", DisableSyncStructure = true)]
public partial class CwCfsModel {
///
/// 唯一编码
///
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper();
///
/// 分公司代码
///
[JsonProperty, Column(DbType = "varchar(36)")]
public string CORPID { get; set; } = "";
///
/// 是否默认方案并不允许删除
///
[JsonProperty]
public bool? ISDEFAULT { get; set; } = false;
///
/// 方案名称
///
[JsonProperty, Column(DbType = "varchar(100)")]
public string MODELNAME { get; set; } = "";
///
/// 更改操作时间
///
[JsonProperty, Column(InsertValueSql = "getdate()")]
public DateTime? MODIFIEDTIME { get; set; }
///
/// 更改操作人gid
///
[JsonProperty, Column(DbType = "varchar(36)")]
public string MODIFIEDUSER { get; set; } = "";
///
/// 账套启用GID
///
[JsonProperty, Column(DbType = "varchar(36)")]
public string STARTGID { get; set; } = "";
}
}