20 lines
550 B
C#
20 lines
550 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Text;
|
|
|
|
namespace Mini.Model.Entity
|
|
{
|
|
public class Ww_hhuser_Name : BaseEntity
|
|
{
|
|
[Key, Column(Order = 0)]
|
|
public string userid { get; set; }
|
|
[Key, Column(Order = 1)]
|
|
public string corpid { get; set; }
|
|
public string remarkname { get; set; }
|
|
//public DateTime? ctime { get; set; }
|
|
//public DateTime? utime { get; set; }
|
|
}
|
|
}
|