16 lines
351 B
C#
16 lines
351 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace Mini.Model.Entity
|
|
{
|
|
public class Bas_Parameter : BaseEntity
|
|
{
|
|
[Key]
|
|
public string parakey { get; set; }
|
|
public string paravalue { get; set; }
|
|
public string remark { get; set; }
|
|
}
|
|
}
|