38 lines
938 B
C#
38 lines
938 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.RES_ALLOCATESTRATEGY")]
|
|
public partial class RES_ALLOCATESTRATEGY
|
|
{
|
|
[Key]
|
|
public decimal STRATEGYID { get; set; }
|
|
|
|
public decimal SALESGROUPID { get; set; }
|
|
|
|
[StringLength(150)]
|
|
public string CHECKPROCEDURE { get; set; }
|
|
|
|
[StringLength(150)]
|
|
public string ALLCOTEPROCEDURE { get; set; }
|
|
|
|
[StringLength(150)]
|
|
public string RECYCLEPROCEDURE { get; set; }
|
|
|
|
[StringLength(150)]
|
|
public string VIEWPROCEDURE { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
public decimal? CREATEUSER { get; set; }
|
|
|
|
[StringLength(150)]
|
|
public string STRATEGYNAME { get; set; }
|
|
|
|
[StringLength(200)]
|
|
public string MEMO { get; set; }
|
|
}
|
|
}
|