You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/BookingWeb/DB/Model/SysUser.cs

34 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Web;
namespace BookingWeb.DB.Model
{
[Table("SYS_USER")]
public class SysUser
{
[Key]
public string GID { get; set; }
public string CLIENT_ID { get; set; }
public string NAME { get; set; }
public string TEL { get; set; }
public string MOBILE { get; set; }
public string PASSWORD { get; set; }
public string EMAIL { get; set; }
public string COMPANY_NAME { get; set; }
public string COMPANY_SHORT_NAME { get; set; }
public string COMPANY_CODE { get; set; }
public string ADDRESS { get; set; }
public string IDENTIFICATION_STATE { get; set; }
public bool IS_ADMIN { get; set; }
public DateTime REG_TIME { get; set; }
public string PIC_PATH { get; set; }
public string REMARK { get; set; }
public string PARENT_ID { get; set; }
public string STATUS { get; set; }
public string INFO_CLIENT { get; set; }
}
}