22 lines
556 B
C#
22 lines
556 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.RES_SALESGROUP_RATE")]
|
|
public class RES_SALESGROUP_RATE
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
public decimal GROUPID { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
public decimal INNERUSERID { get; set; }
|
|
public decimal? RESRATE { get; set; }
|
|
public DateTime? EXETIME { get; set; }
|
|
public DateTime? UTIME { get; set; }
|
|
}
|
|
}
|