123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MES.Production.Entity.RequestMod
- {
- public class RequestloadMore
- {
- public int loadId
- {
- get; set;
- }
- public string type
- {
- get; set;
- }
- public string uid
- {
- get; set;
- }
- public string feed_type
- {
- get; set;
- }
- public string feed_key
- {
- get; set;
- }
- public string fgid
- {
- get; set;
- }
- public string topic_id
- {
- get; set;
- }
- public string load_count
- {
- get; set;
- }
- public string gid
- {
- get; set;
- }
- }
- }
|