1234567891011121314151617181920 |
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace WCS.Entity
- {
- [SugarTable()]
- public class WCS_TaskOutSeq
- {
- [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "ID")]
- public int ID { get; set; }
- public int TaskID { get; set; }
-
- }
-
- }
|