| | |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_ISerialPortRepository; |
| | | using WIDESEAWCS_Core; |
| | | using WIDESEAWCS_Core.BaseServices; |
| | | using WIDESEAWCS_ITaskInfoService; |
| | | using WIDESEAWCS_Model.Models; |
| | |
| | | public NJCommandsServer(INJCommandsRepository BaseDal) : base(BaseDal) |
| | | { |
| | | } |
| | | public override PageGridData<Dt_NJCommands> GetPageData(PageDataOptions options) |
| | | { |
| | | OrderByParameters = new Dictionary<string, SqlSugar.OrderByType> { |
| | | { |
| | | nameof(Dt_NJCommands.ID),SqlSugar.OrderByType.Asc |
| | | } }; |
| | | return base.GetPageData(options); |
| | | } |
| | | } |
| | | } |