using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NFine.Domain._03_Entity.SRM { public class ICSPERFNORMALTARGET { public string WorkPoint { get; set; } public string NORMALTARGETCATEGORY { get; set; } public decimal NORMALTARGETValue { get; set; } public decimal TARGETSCORE { get; set; } public DateTime EffDate { get; set; } public DateTime DisDate { get; set; } public string REMARK { get; set; } public DateTime CREATEDATE { get; set; } public DateTime CREATETIME { get; set; } public string CREATEUSER { get; set; } public DateTime MODIFIEDDATE { get; set; } public DateTime MODIFIEDTIME { get; set; } public string MODIFIEDUSER { get; set; } public string ADDITION1 { get; set; } public string ADDITION2 { get; set; } } }