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.
 
 
 
 

26 lines
840 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NFine.Domain._03_Entity.SRM
{
public class ICSPERFTEMPLATEMITEM
{
public string WorkPoint { get; set; }
public string MITEMCODE { get; set; }
public string MITEMDESCRIPTION { get; set; }
public string MITEMNAME { get; set; }
public decimal MITEMSCORE { 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; }
}
}