24 lines
562 B
C#
24 lines
562 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace model
|
|
{
|
|
[Table("ww_userinfo")]
|
|
public class ww_userinfo
|
|
{
|
|
[Key]
|
|
public string machineid { get; set; }
|
|
[Key]
|
|
public string userid { get; set; }
|
|
public string corpid { get; set; }
|
|
public DateTime? ctime { get; set; }
|
|
|
|
public int isdefault { get; set; }
|
|
}
|
|
}
|