| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Financial
- {
- /// <summary>
- /// 财务 - 对外收款账单
- /// 雷怡 2023-08-14 16:20
- /// </summary>
- [SugarTable("Fin_ForeignReceivables")]
- public class Fin_ForeignReceivables:EntityBase
- {
- /// <summary>
- /// 团组Id
- /// </summary>
- [SugarColumn(IsNullable = true,ColumnDataType = "int")]
- public int Diid { get; set; }
- /// <summary>
- /// 费用名称
- /// </summary>
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
- public string? PriceName { get; set; }
- /// <summary>
- /// 费用
- /// </summary>
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
- public decimal Price { get; set; }
- /// <summary>
- /// 数量
- /// </summary>
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int Count { get; set; }
- /// <summary>
- /// 单位
- /// </summary>
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string? Unit { get; set; }
- /// <summary>
- /// 单项总和
- /// </summary>
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
- public decimal ItemSumPrice { get; set; }
- /// <summary>
- /// 付款方
- /// </summary>
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
- public string? To { get; set; }
- /// <summary>
- /// 付款方电话
- /// </summary>
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string? ToTel { get; set; }
- /// <summary>
- /// 付款日期
- /// </summary>
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string? PayDate { get; set; }
- /// <summary>
- /// 汇率
- /// </summary>
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
- public decimal Rate { get; set; }
- /// <summary>
- /// 币种
- /// </summary>
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
- public string? Currency { get; set; }
- /// <summary>
- /// 添加方式
- /// 0 - 账单页面添加 1 - 预算成本页面添加
- /// </summary>
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int AddingWay { get; set; }
- }
- }
|