ComplianceServer/oldcode/Model/Entity/RES_SALESGROUP.cs

25 lines
559 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.RES_SALESGROUP")]
public partial class RES_SALESGROUP
{
[Key]
public decimal GROUPID { get; set; }
[Required]
[StringLength(50)]
public string NAME { get; set; }
public DateTime? CTIME { get; set; }
public decimal? CREATEUSER { get; set; }
[StringLength(200)]
public string MEMO { get; set; }
}
}