| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- /*******************************************************************************
- * 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;
- }
- }
- }
|