namespace EC.AutoWeightServer.Model.State { /// /// 当前称重状态 /// Empty:空闲; In:进入; Out:离开; /// public enum CarState { Empty = 0, In = 1, Out = 2 } }