You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
993 B
C#

7 months ago
using Newtonsoft.Json;
using SOA.Persistent;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ibk.IPD.Entity.IPD_MR.CapacityAndTime
{
[Serializable]
[Table("PRO_ROUTE")]
[JsonObject]
public class PRO_ROUTE
{
[Persistent("PK"), DisplayName("主键ID")]
public string PK { get; set; }
[Persistent("KR"), DisplayName("脱硫")]
public string KR { get; set; }
[Persistent("BOF"), DisplayName("转炉")]
public string BOF { get; set; }
[Persistent("LF"), DisplayName("精炼")]
public string LF { get; set; }
[Persistent("RH"), DisplayName("RH")]
public string RH { get; set; }
[Persistent("CC"), DisplayName("连铸")]
public string CC { get; set; }
[Persistent("STLGRD"), DisplayName("钢种")]
public string STLGRD { get; set; }
}
}