using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 企业用量明细 /// public class EnterpriseCost : CommonEntity { /// /// 企业Id /// public Guid EnterpriseId { get; set; } /// /// 企业 /// public Enterprise Enterprise { get; set; } /// /// 用量类型 /// public EnumEnterpriseCostType Type { get; set; } /// /// 灵工合同Id /// public Guid? EnterpriseEmployeeContractId { get; set; } /// /// 灵工合同 /// public EnterpriseEmployeeContract EnterpriseEmployeeContract { get; set; } /// /// 扣费状态 /// public EnumEnterpriseCostStatus? Status { get; set; } /// /// 费用 /// public decimal? Amount { get; set; } } }