/******************************************************************************* * Copyright(c) 2014 dongke All rights reserved. / Confidential * 类的信息: * 1.程序名称:StaffEntity.cs * 2.功能描述:班次实体类 * 编辑履历: * 作者 日期 版本 修改内容 * 冯雪 2014/09/24 1.00 新建 *******************************************************************************/ using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; namespace Dongke.IBOSS.PRD.WCF.DataModels { public class GetLineChangeEntity { public string BuildingNo { get; set; } public string FloorNo { get; set; } public string GroutingLineNo { get; set; } public string GroutingLineCode { get; set; } public DateTime? BeginDate { get; set; } public DateTime? EndDate { get; set; } public string GoodsCodeB { get; set; } public string GoodSCodeA { get; set; } } }