WCS_TaskOutSeq.cs 358 B

1234567891011121314151617181920
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace WCS.Entity
  6. {
  7. [SugarTable()]
  8. public class WCS_TaskOutSeq
  9. {
  10. [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "ID")]
  11. public int ID { get; set; }
  12. public int TaskID { get; set; }
  13. }
  14. }