using System.Collections; using System.Collections.Generic; using UnityEngine; using UniRx; public class LogisticsSafeguards { public List Safeguards; } public class LogisticsSafeguard { public string Id { get; set; } /// /// 单位名称 /// public string UnitName { get; set; } /// /// 单位地址 /// public string Address { get; set; } /// /// 法人 /// public string JuridicalPerson { get; set; } /// /// 电话 /// public string Phone { get; set; } /// /// 技术人员数 /// public string PersonCount { get; set; } /// /// 紧急运输车辆数 /// public string TruckCount { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 保障品名 /// public string SecurityGoods { get; set; } /// /// 保障能力 /// public string SupportCapability { get; set; } /// /// 库存量 /// public string Inventory { get; set; } } public class LogisticsSafeguardReactive { private LogisticsSafeguard Data = new LogisticsSafeguard(); public ReactiveProperty Id { get; set; } = new ReactiveProperty(); /// /// 单位名称 /// public ReactiveProperty UnitName { get; set; } = new ReactiveProperty(); /// /// 单位地址 /// public ReactiveProperty Address { get; set; } = new ReactiveProperty(); /// /// 法人 /// public ReactiveProperty JuridicalPerson { get; set; } = new ReactiveProperty(); /// /// 电话 /// public ReactiveProperty Phone { get; set; } = new ReactiveProperty(); /// /// 技术人员数 /// public ReactiveProperty PersonCount { get; set; } = new ReactiveProperty(); /// /// 紧急运输车辆数 /// public ReactiveProperty TruckCount { get; set; } = new ReactiveProperty(); /// /// 备注 /// public ReactiveProperty Remark { get; set; } = new ReactiveProperty(); /// /// 保障品名 /// public ReactiveProperty SecurityGoods { get; set; } = new ReactiveProperty(); /// /// 保障能力 /// public ReactiveProperty SupportCapability { get; set; } = new ReactiveProperty(); /// /// 库存量 /// public ReactiveProperty Inventory { get; set; } = new ReactiveProperty(); public LogisticsSafeguardReactive() { Id.Subscribe(value => Data.Id = value); UnitName.Subscribe(value => Data.UnitName = value); Address.Subscribe(value => Data.Address = value); JuridicalPerson.Subscribe(value => Data.JuridicalPerson = value); Phone.Subscribe(value => Data.Phone = value); PersonCount.Subscribe(value => Data.PersonCount = value); TruckCount.Subscribe(value => Data.TruckCount = value); Remark.Subscribe(value => Data.Remark = value); SecurityGoods.Subscribe(value => Data.SecurityGoods = value); SupportCapability.Subscribe(value => Data.SupportCapability = value); Inventory.Subscribe(value => Data.Inventory = value); } public LogisticsSafeguard GetData() { return Data; } }