15 lines
370 B
C#
15 lines
370 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.BAS_CASE_CATEGORY")]
|
|
public class BAS_CASE_CATEGORY
|
|
{
|
|
public decimal ID { get; set; }
|
|
public string CATEGORYNAME { get; set; }
|
|
public decimal CREATEEID { get; set; }
|
|
public DateTime CTIME { get; set; }
|
|
}
|
|
}
|