| 1234567891011121314151617181920212223 | using SqlSugar;using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace WCS_Client.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; }    }}
 |