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; } } }