12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MES.Production.Entity
- {
- public class ApplyCarLock: MongoModel
- {
-
-
-
- public string carid
- {
- get; set;
- }
-
-
-
- public int apply_type
- {
- get; set;
- }
-
-
-
- public int state
- {
- get; set;
- }
-
-
-
- public string add_name
- {
- get; set;
- }
- }
- }
|