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

18 lines
474 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.RES_WEIGHT")]
public class RES_WEIGHT
{
[Key]
public string RESID { get; set; }
public decimal DISTRIBUTENUM { get; set; }
public DateTime FIRSTJOINTIME { get; set; }
public DateTime LASTDISTIME { get; set; }
public decimal WEIGHT { get; set; }
}
}