| 12345678910111213141516171819202122232425262728 |
- using ivf_tl_Entity.Entity.Mark;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Response
- {
- public class MarkModelResponse
- {
- public long id { get; set; }
- public int child { get; set; }
- public int defaultValue { get; set; }
- public long keyId { get; set; }
- public int keyNode { get; set; }
- public string markKey { get; set; }
- public long model { get; set; }
- public string name { get; set; }
- public int orderNum { get; set; }
- public long parentId { get; set; }
- public int state { get; set; }
- public int unit { get; set; }
- public decimal weight { get; set; }
- public int level { get; set; }
- }
- }
|