| | |
| | | using Mapster; |
| | | using Yw.Basic; |
| | | using Yw.Dto; |
| | | using Yw.Dto; |
| | | |
| | | namespace HStation.WinFrmUI.Basic |
| | | { |
| | |
| | | InitializeComponent(); |
| | | } |
| | | |
| | | public event Func<Yw.Dto.AddSysPropGroupInput, Task<bool>> ReloadDataEvent = null; |
| | | public event Func<Yw.Vmo.SysPropGroup, Task<bool>> ReloadDataEvent = null; |
| | | |
| | | private AddSysPropGroupInput _AddPropGroupDto { get; set; } |
| | | private Yw.Vmo.SysPropGroup _AddPropGroupDto { get; set; } |
| | | |
| | | public async void SetBindingData(long TypeID) |
| | | { |
| | | _AddPropGroupDto = new AddSysPropGroupInput(); |
| | | _AddPropGroupDto = new Yw.Vmo.SysPropGroup(); |
| | | _AddPropGroupDto.TypeID = TypeID; |
| | | } |
| | | |