crm.core/code/Crm.Core.Entity/Wework/BasConfig.cs

22 lines
413 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.Entity.Wework
{
[Table("Bas_Config")]
public class BasConfig
{
[Key]
public string? Code { get; set; }
public string? Value { get; set; }
public DateTime? Time { get; set; }
public string? Content { get; set; }
}
}