20 lines
503 B
C#
20 lines
503 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.BAS_TEAM")]
|
|
public class BAS_TEAM
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
public string TEAMNAME { get; set; }
|
|
public decimal TEAMLEADER { get; set; }
|
|
public decimal TEAMLEADEREID { get; set; }
|
|
public decimal GID { get; set; }
|
|
public DateTime CTIME { get; set; }
|
|
|
|
}
|
|
}
|