TG.WXCRM.V4/Model/Entity/RES_WEEKCHART.cs

18 lines
395 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.RES_WEEKCHART")]
public partial class RES_WEEKCHART
{
[Key]
public decimal WEEKID { get; set; }
public decimal? WEEKNUM { get; set; }
public DateTime? CTIME { get; set; }
}
}