123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelFunction
- {
- public class MQActivity
- {
- public string id { get; set; }
- public string code { get; set; }
- public string owner { get; set; }
- public List<string> classes { get; set; }
- //如果已经完成则不写入???
- public string progress { get; set; }
- public string scope { get; set; }
- public string school { get; set; }
- public string creatorId { get; set; }
- public string pk { get; set; }
- public string name { get; set; }
- public List<string> subjects { get; set; }
- public string blob { get; set; }
- public long startTime { get; set; }
- public long endTime { get; set; }
- }
- }
|