123456789101112131415161718192021 |
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace WCS.Data.Models
- {
- public class WCS_SYSSET
- {
- [SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
- public string SET_ID { get; set; }
- public string SET_NAME { get; set; }
- public string SET_VALUE { get; set; }
- public string SET_TYPE { get; set; }
- public string SET_MEMO { get; set; }
- public string SET_ADDUSERNO { get; set; }
- public string SET_ADDTIME { get; set; }
- public string SET_EDITUSERNO { get; set; }
- public string SET_EDITTIME { get; set; }
- }
- }
|