34 lines
799 B
C#
34 lines
799 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.RES_RESOURCECOSTS")]
|
|
public partial class RES_RESOURCECOSTS
|
|
{
|
|
[Key]
|
|
public decimal RESOURCEID { get; set; }
|
|
|
|
public decimal? WEEKED { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string CHANNELNAME { get; set; }
|
|
|
|
public DateTime? ONLINETIME { get; set; }
|
|
|
|
public decimal? AMOUNT { get; set; }
|
|
|
|
public decimal? PAPER { get; set; }
|
|
|
|
public decimal? ACTUAL { get; set; }
|
|
|
|
public decimal? WEEKRESOURCE { get; set; }
|
|
|
|
public decimal? ACTUALCOST { get; set; }
|
|
|
|
[StringLength(200)]
|
|
public string MSGTEXT { get; set; }
|
|
}
|
|
}
|