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.
26 lines
630 B
C#
26 lines
630 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ibk.IPD.Entity.IPD_MR.HotRoll.QueryArgs
|
|
{
|
|
public class OnwayPlaFungibleSpeciQueryArgs
|
|
{
|
|
public DateTime START_TIME { get; set; }
|
|
public DateTime END_TIME { get; set; }
|
|
//主键ID 10
|
|
public string PK { get; set; }
|
|
|
|
//起始库 10
|
|
public string START_LIBRARY { get; set; }
|
|
|
|
//目标库 10
|
|
public string END_LIBRARY { get; set; }
|
|
|
|
//切割能力(Y 有 / N 无) 2
|
|
public string CUT_ABILITY { get; set; }
|
|
}
|
|
}
|