18 lines
418 B
C#
18 lines
418 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.VIEW_RES_DISTRIBUTE")]
|
|
public partial class VIEW_RES_DISTRIBUTE
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
public decimal DISTRIBUTEID { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
public decimal SALESID { get; set; }
|
|
}
|
|
}
|