using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace JavaCode.cs
|
{
|
public class SysDict
|
{
|
public long id { set; get; }
|
|
public string table { set; get; }
|
|
public string descr { set; get; }
|
|
public string field { set; get; }
|
|
public string alias { set; get; }
|
|
public string type { set; get; }
|
}
|
}
|