17 lines
427 B
C#
17 lines
427 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.WX_SZZYORDERUSERNAME")]
|
|
public class WX_SZZYORDERUSERNAME
|
|
{
|
|
[Key]
|
|
public decimal ORDERID { get; set; }
|
|
|
|
public string USERNAME { get; set; }
|
|
public decimal ISDELETE { get; set; }
|
|
public decimal INNERUSERID { get; set; }
|
|
}
|
|
}
|