1234567891011121314151617181920212223242526272829303132333435 |
- 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.OneToOne, nameof(Id))]//一对一 SchoolId是StudentA类里面的
- public List<DailypaymentSubTypeView> SubData { get; set; }
- }
- [SqlSugar.SugarTable("Sys_SetData")]
- public class DailypaymentSubTypeView
- {
- public int Id { get; set; }
- public int STid { get; set; }
- public string Name { get; set; }
- }
- }
|