You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;
namespace NFine.Domain._03_Entity.SRM { public class ICSPERFCHECKRESULT { public string ID { get; set; } public string WorkPoint { get; set; } public string VENDORCODE { get; set; } public string MITEMCODE { get; set; } public string MITEMNAME { get; set; } public decimal SCORE { get; set; } public DateTime BeginDate { get; set; } public DateTime EndDate { get; set; } public string CHECKSTATUS { 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; }
} }
|