using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Service.Dto.service { public class DocRequest { public string DocNo { get; set; } public string User { get; set; } // 可选,仅 SaveReview 用到 public List Items { get; set; } // 可选,仅 SaveReview 用到 } }