| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /*******************************************************************************
- * Copyright(c) 2014 dongke All rights reserved. / Confidential
- * 类的信息:
- * 1.程序名称:JobsEntity.cs
- * 2.功能描述:工种实体
- * 编辑履历:
- * 作者 日期 版本 修改内容
- * 李柳 2014/08/11 1.00 新建
- *******************************************************************************/
- using System.Runtime.Serialization;
- namespace Dongke.IBOSS.PRD.WCF.DataModels
- {
- [DataContract]
- public class JobsEntity
- {
- #region 属性
- [DataMember]
- public int JobsID
- {
- get;
- set;
- }
- [DataMember]
- public string JobsCode
- {
- get;
- set;
- }
- [DataMember]
- public string JobsName
- {
- get;
- set;
- }
- public string Remarks
- {
- get;
- set;
- }
- public int AccountID
- {
- get;
- set;
- }
- public string CreateTime
- {
- get;
- set;
- }
- public int CreateUserID
- {
- get;
- set;
- }
- public string UpdateTime
- {
- get;
- set;
- }
- public int UpdateUserID
- {
- get;
- set;
- }
- #endregion
- }
- }
|