42 lines
1015 B
C#
42 lines
1015 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.WX_STOCKRECOMMEND")]
|
|
public partial class WX_STOCKRECOMMEND
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
public decimal? REFERRERID { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string STOCKCODE { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string STOCKNAME { get; set; }
|
|
|
|
public decimal? BUYPRICE { get; set; }
|
|
|
|
public DateTime? BUYDATE { get; set; }
|
|
|
|
public decimal? STOPLOSSPRICE { get; set; }
|
|
|
|
public decimal? POSITION { get; set; }
|
|
|
|
[StringLength(500)]
|
|
public string SELLDATEANDPRICE { get; set; }
|
|
|
|
public decimal? EARNINGRATE { get; set; }
|
|
|
|
[StringLength(2000)]
|
|
public string RECOMMENDREASON { get; set; }
|
|
|
|
public decimal? INNERUSERID { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
}
|
|
}
|