GetLineChangeEntity.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*******************************************************************************
  2. * Copyright(c) 2014 dongke All rights reserved. / Confidential
  3. * 类的信息:
  4. * 1.程序名称:StaffEntity.cs
  5. * 2.功能描述:班次实体类
  6. * 编辑履历:
  7. * 作者 日期 版本 修改内容
  8. * 冯雪 2014/09/24 1.00 新建
  9. *******************************************************************************/
  10. using System;
  11. using System.Collections.Generic;
  12. using System.Linq;
  13. using System.Runtime.Serialization;
  14. using System.Text;
  15. namespace Dongke.IBOSS.PRD.WCF.DataModels
  16. {
  17. public class GetLineChangeEntity
  18. {
  19. public string BuildingNo
  20. {
  21. get;
  22. set;
  23. }
  24. public string FloorNo
  25. {
  26. get;
  27. set;
  28. }
  29. public string GroutingLineNo
  30. {
  31. get;
  32. set;
  33. }
  34. public string GroutingLineCode
  35. {
  36. get;
  37. set;
  38. }
  39. public DateTime? BeginDate
  40. {
  41. get;
  42. set;
  43. }
  44. public DateTime? EndDate
  45. {
  46. get;
  47. set;
  48. }
  49. public string GoodsCodeB
  50. {
  51. get;
  52. set;
  53. }
  54. public string GoodSCodeA
  55. {
  56. get;
  57. set;
  58. }
  59. }
  60. }