Mini.Crm/Mini.Model/Entity/Bas_Config.cs

18 lines
387 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Mini.Model.Entity
{
public class Bas_Config : BaseEntity
{
[Key]
public string code { get; set; }
public string value { get; set; }
public DateTime? time { get; set; }
public string content { get; set; }
}
}