| 123456789101112131415161718192021222324252627282930313233 |
- using DevExpress.Xpo;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ips.Sps.Tsks
- {
- public class TskSat : XPObject
- {
- public TskSat() : base()
- {
- }
- public TskSat(Session session) : base(session)
- {
- }
- public override void AfterConstruction()
- {
- base.AfterConstruction();
- }
- private int _satId;
- [DisplayName("卫星")]
- public int SatId
- {
- get => _satId;
- set => SetPropertyValue(nameof(SatId), ref _satId, value);
- }
- }
- }
|