12345678910111213 |
- namespace ET.Server
- {
- [ComponentOf(typeof (Map))]
- public class MapDouyinLiveCommentComponent: Entity, IAwake, IDestroy, IUpdate
- {
- /** 任务id **/
- public long TaskId { get; set; }
- /** 请求链路id, 用于出问题时提供给开平具体定位 **/
- public long LogId { get; set; }
- /** 任务运行状态 **/
- public int Status { get; set; }
- }
- }
|