15 lines
357 B
C#
15 lines
357 B
C#
using System;
|
|
|
|
namespace NetCore.Model.wx
|
|
{
|
|
public class wx_hg_man_config
|
|
{
|
|
public DateTime checkdate { get; set; }
|
|
public string tablename { get; set; }
|
|
public int pkid { get; set; }
|
|
public DateTime? ctime { get; set; }
|
|
public DateTime? utime { get; set; }
|
|
public int status { get; set; }
|
|
}
|
|
}
|