29 lines
669 B
C#
29 lines
669 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.CSVR_CALLOUTPARA")]
|
|
public partial class CSVR_CALLOUTPARA
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[StringLength(50)]
|
|
public string CALLOUTTYPE { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[StringLength(50)]
|
|
public string CALLOUTNAME { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
[StringLength(50)]
|
|
public string CALLOUTNUM { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 3)]
|
|
public short ISSHOW { get; set; }
|
|
}
|
|
}
|