17 lines
386 B
C#
17 lines
386 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.CSVR_TODOSTATUS")]
|
|
public partial class CSVR_TODOSTATUS
|
|
{
|
|
[Key]
|
|
public decimal STATUSCODE { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string STATUSNAME { get; set; }
|
|
}
|
|
}
|