/******************************************************************************* * Copyright(c) 2015 DongkeSoft All rights reserved. / Confidential * 类的信息: * 1.程序名称:FPC0601_SE.cs * 2.功能描述:FPC0601画面查询实体 * 编辑履历: * 作者 日期 版本 修改内容 * 袁新成 2015/04/17 1.00 新建 *******************************************************************************/ using System; using System.Runtime.Serialization; namespace Dongke.IBOSS.PRD.WCF.DataModels { /// /// FPC0601画面查询实体 /// [DataContract] public class FPC0601_SE { /// /// 工号编码 /// [DataMember] public string UserCode { get; set; } /// /// 备注 /// [DataMember] public string Remarks { get; set; } } }