23 lines
512 B
C#
23 lines
512 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 CRM.Core.Model.Entity
|
|
{
|
|
[Table("t_user_protocol_order")]
|
|
public class USER_PROTOCOL_ORDER
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
[Column("protocol_id")]
|
|
public int ProtocolId { get; set; }
|
|
|
|
public decimal Orderid { get; set; }
|
|
}
|
|
}
|