MapDouyinLiveCommentComponent.cs 412 B

12345678910111213
  1. namespace ET.Server
  2. {
  3. [ComponentOf(typeof (Map))]
  4. public class MapDouyinLiveCommentComponent: Entity, IAwake, IDestroy, IUpdate
  5. {
  6. /** 任务id **/
  7. public long TaskId { get; set; }
  8. /** 请求链路id, 用于出问题时提供给开平具体定位 **/
  9. public long LogId { get; set; }
  10. /** 任务运行状态 **/
  11. public int Status { get; set; }
  12. }
  13. }