wwservice/model/ww_hhuser.cs

28 lines
577 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Threading.Tasks;
namespace model
{
[Table("ww_hhuser")]
public class ww_hhuser
{
[Key]
public string userid { get; set; }
[Key]
public string corpid { get; set; }
public string name { get; set; }
public string mobile { get; set; }
public string exinfo { get; set; }
public DateTime lastupdate { get; set; }
}
}