You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
597 B

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using Volo.Abp.Application.Dtos;
using Win.Sfs.Shared.Filter;
namespace Win.Sfs.Shared.DtoBase
{
/// <summary>
/// Request DTO base
/// </summary>
[Serializable]
public abstract class BranchRequestDtoBase : RequestDtoBase, IBranch<Guid>
{
/// <summary>
/// 分支ID
/// </summary>
[Display(Name = "分支Id")]
[Required(ErrorMessage = "{0}是必填项")]
public Guid BranchId { get; set; }
}
}