using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Dtos.Groups { public class Search_GrpCreditCardPaymentDto { /// /// 团组Id /// public int DiId { get; set; } /// /// 费用类型 0:所有,1:机票,2:酒店,3:OP,4:商邀,5:签证,6:团组增减款项 /// public int Label { get; set; } = 0; /// /// 审核状态 0/1/2,未审核/审核通过/审核不通过 /// public int AuditStatus { get; set; } } }