22 lines
520 B
C#
22 lines
520 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace Mini.Model.WxEntity
|
|
{
|
|
public class Bas_Parameter
|
|
{
|
|
[Key]
|
|
public int pkid { get; set; }
|
|
public string parakey { get; set; }
|
|
public string groupid { get; set; }
|
|
public string paravalue { get; set; }
|
|
public string paratype { get; set; }
|
|
public string remark { get; set; }
|
|
public string paraname { get; set; }
|
|
|
|
|
|
}
|
|
}
|