using CSFramework.DB;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace CSFramework.DBTester
|
{
|
|
|
[TableInfoAttribute("sys_Log")]
|
public class sys_Log
|
{
|
//标识该字段为主键
|
[KeyField]
|
public string GUID32 { get; set; }
|
|
//该字段为自增字段,忽略
|
[IgnoreField]
|
public int isid { get; set; }
|
|
public string DocNo { get; set; }
|
|
public string LogUser { get; set; }
|
|
public int OPType { get; set; }
|
|
public DateTime LogDate { get; set; }
|
|
public bool IsProcess { get; set; }
|
|
//忽略的字段
|
[IgnoreField]
|
public string IgnoreField1 { get; set; }
|
|
//忽略的字段
|
[IgnoreField]
|
public string IgnoreField2 { get; set; }
|
}
|
}
|