| 1234567891011121314151617181920212223242526 |
- using System.ComponentModel.DataAnnotations;
- using Abp.AutoMapper;
- using WePlatform.Configuration;
- namespace WePlatform.WeLib.Scene.Dto
- {
- [AutoMapTo(typeof(EnvironResourceRelatedInfo)),AutoMapFrom(typeof(EnvironResourceRelatedInfo))]
- public class EnvironResourceRelatedDto
- {
- /// <summary>
- /// 关联编码
- /// </summary>
- [MaxLength(IwbConsts.PrimaryKey)]
- public string RelatedNo { get; set; }
- /// <summary>
- /// 关联类型
- /// </summary>
- public int RelatedType { get; set; }
- /// <summary>
- /// 资源信息
- /// </summary>
- [MaxLength(IwbConsts.PrimaryKey)]
- public string EnvironResourceNo { get; set; }
- }
- }
|