| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | using Org.BouncyCastle.Crypto;using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace OASystem.Domain.ViewModels.Statistics{    public class DailypaymentView    {    }    [SqlSugar.SugarTable("Sys_SetDataType")]    public class DailypaymentParentTypeView    {        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]        public int Id { get; set; }        public string Name { get; set; }        [Navigate(NavigateType.OneToMany, nameof(DailypaymentSubTypeView.STid))]        public List<DailypaymentSubTypeView> SubData { get; set; }    }    [SqlSugar.SugarTable("Sys_SetData")]    public class DailypaymentSubTypeView    {        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]        public int Id { get; set; }        public int STid { get; set; }        public string Name { get; set; }        [SqlSugar.SugarColumn(IsIgnore = true)]        public bool IsChecked { get; set; } = false;    }    }
 |