1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace HNWD.Pregrant.Model
- {
- public class WD_DeviceInfoExt : ModelExtBase<WD_DeviceInfo>
- {
- public List<WD_DeviceInfo> BedInfoArray = new List<WD_DeviceInfo>();
- public List<WD_DeviceInfo> DeviceInfoArray = new List<WD_DeviceInfo>();
- public List<WD_DeviceInfo> hostList = new List<WD_DeviceInfo>();
-
- }
- }
|