JobsEntity.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*******************************************************************************
  2. * Copyright(c) 2014 dongke All rights reserved. / Confidential
  3. * 类的信息:
  4. * 1.程序名称:JobsEntity.cs
  5. * 2.功能描述:工种实体
  6. * 编辑履历:
  7. * 作者 日期 版本 修改内容
  8. * 李柳 2014/08/11 1.00 新建
  9. *******************************************************************************/
  10. using System.Runtime.Serialization;
  11. namespace Dongke.IBOSS.PRD.WCF.DataModels
  12. {
  13. [DataContract]
  14. public class JobsEntity
  15. {
  16. #region 属性
  17. [DataMember]
  18. public int JobsID
  19. {
  20. get;
  21. set;
  22. }
  23. [DataMember]
  24. public string JobsCode
  25. {
  26. get;
  27. set;
  28. }
  29. [DataMember]
  30. public string JobsName
  31. {
  32. get;
  33. set;
  34. }
  35. public string Remarks
  36. {
  37. get;
  38. set;
  39. }
  40. public int AccountID
  41. {
  42. get;
  43. set;
  44. }
  45. public string CreateTime
  46. {
  47. get;
  48. set;
  49. }
  50. public int CreateUserID
  51. {
  52. get;
  53. set;
  54. }
  55. public string UpdateTime
  56. {
  57. get;
  58. set;
  59. }
  60. public int UpdateUserID
  61. {
  62. get;
  63. set;
  64. }
  65. #endregion
  66. }
  67. }