21 lines
524 B
C#
21 lines
524 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
|
|
[Table("ww_szzyorder_extuserid")]
|
|
public class Ww_SzzyOrder_ExtUserId
|
|
{
|
|
[Key]
|
|
public decimal orderid { get; set; }
|
|
public string extuserid { get; set; }
|
|
public string userid { get; set; }
|
|
public string corpid { get; set; }
|
|
public DateTime? ctime { get; set; }
|
|
public DateTime? utime { get; set; }
|
|
|
|
}
|
|
}
|