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.
78 lines
1.9 KiB
C#
78 lines
1.9 KiB
C#
|
|
//-----------------------------------------------------------------------
|
|
//<copyright>
|
|
// * Copyright (C) 2021 KEHAIDASOFT All Rights Reserved
|
|
// * version : 4.0.30319.42000
|
|
// * author : khd by t4-2
|
|
// </copyright>
|
|
//-----------------------------------------------------------------------
|
|
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Khd.Core.Domain.Models
|
|
{
|
|
|
|
[Table("base_systemconfig")]
|
|
public class BaseSystemconfig
|
|
{
|
|
|
|
[Key]
|
|
[Column("id")]
|
|
public Guid id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 系统设置编码
|
|
/// </summary>
|
|
[Column("system_filedno")]
|
|
public string systemFiledno { get; set; }
|
|
|
|
/// <summary>
|
|
/// 系统配置值
|
|
/// </summary>
|
|
[Column("system_filedval")]
|
|
public string systemFiledval { get; set; }
|
|
|
|
/// <summary>
|
|
/// 字段描述
|
|
/// </summary>
|
|
[Column("system_fileddesc")]
|
|
public string systemFileddesc { get; set; }
|
|
|
|
[Column("is_delete")]
|
|
public int? isDelete { get; set; }
|
|
|
|
[Column("create_time")]
|
|
public DateTime? createTime { get; set; }
|
|
|
|
[Column("create_id")]
|
|
public Guid? createId { get; set; }
|
|
|
|
[Column("create_by")]
|
|
public string createBy { get; set; }
|
|
|
|
[Column("modify_time")]
|
|
public DateTime? modifyTime { get; set; }
|
|
|
|
[Column("modify_id")]
|
|
public Guid? modifyId { get; set; }
|
|
|
|
[Column("modify_by")]
|
|
public string modifyBy { get; set; }
|
|
|
|
[Column("definefield3")]
|
|
public string definefield3 { get; set; }
|
|
|
|
[Column("definefield1")]
|
|
public string definefield1 { get; set; }
|
|
|
|
[Column("definefield2")]
|
|
public string definefield2 { get; set; }
|
|
|
|
[Column("line_id")]
|
|
public Guid? lineId { get; set; }
|
|
}
|
|
}
|
|
|