You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
494 B

using System.Collections.Generic;
using MongoDB.Bson.Serialization.Attributes;
namespace ET
{
public class Gather:Entity,IAwake,ISerializeToEntity
{
//采集列表
public List<long> PeopleIdList = new List<long>();
public long ResPointId;
public int ResConfigId;
//准备去采集
public List<long> PreparePeopleIdList = new List<long>();
//
[BsonIgnore]
public int GatherTime = 0;
}
}