using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 更新第三方数据映射 /// public class UpdateOtherObjectMappingInput { /// /// 标识 /// public long ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 对象类型 /// public string ObjectType { get; set; } /// /// 对象标识 /// public long ObjectID { get; set; } /// /// 第三方系统标识 /// public long OtherSystemID { get; set; } /// /// 第三方对象标识 /// public string OtherObjectId { get; set; } } }