19 lines
483 B
C#
19 lines
483 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.RES_SALESGROUPPROMOTION")]
|
|
public class RES_SALESGROUPPROMOTION
|
|
{
|
|
[Key]
|
|
public decimal GROUPID { get; set; }
|
|
public string NAME { get; set; }
|
|
public DateTime? CTIME { get; set; }
|
|
public decimal? CREATEUSER { get; set; }
|
|
public string MEMO { get; set; }
|
|
|
|
}
|
|
}
|