PostbondviewDto.cs 420 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace DllEapEntity.OFILM
  5. {
  6. public class PostbondviewDto: Postbondview
  7. {
  8. public string Recipe { get; set; }
  9. public string FCode { get; set; }
  10. public string Diff_X { get; set; }
  11. public string Diff_Y { get; set; }
  12. public string Diff_T { get; set; }
  13. public string RowNum { get; set; }
  14. }
  15. }