123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MES.Production.Entity.Model
- {
- public class Ent_User
- {
- public int ID
- {
- get; set;
- }
- public string ACCOUNT
- {
- get; set;
- }
- public string NAME
- {
- get; set;
- }
- public string DPTNAME
- {
- get; set;
- }
- public string POSTNAME
- {
- get; set;
- }
- public string ROLENAME
- {
- get; set;
- }
- public string ISCANLOGIN
- {
- get; set;
- }
- }
- }
|