12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace IntelligentControlForsx.Service.ControlLog.Domain
- {
- public class StationEntity
- {
- public StationEntity(string stationId,string stationName)
- {
- StationId = stationId;
- StationName = stationName;
- }
-
-
-
- public string StationId { set; get; }
-
-
-
- public string StationName { set; get; }
- }
- }
|