| | |
| | | using cylsg.Core; |
| | | using cylsg.Core.Attributes; |
| | | using cylsg.Model.TransferOrder; |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | |
| | | public string Remark { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 微信支付记录 |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "备注",IsNullable = true)] |
| | | public int? WeChatTransferOrderID { get; set; } |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | [Navigate(NavigateType.OneToOne, nameof( WeChatTransferOrderID))] |
| | | public WeChatTransferOrder? WeChatTransferOrderInfo { get; set; } |
| | | |
| | | } |
| | | |
| | | /// <summary> |