|
@@ -222,7 +222,7 @@ namespace mxdemo.Mind
|
|
|
// 展示字段
|
|
|
int groupId; // 组合ID,没有组合为0比如未参与报名人数(实际只有两种统计数据,针对某个组合的统计和不针对组合的统计)
|
|
|
int value; // 数值
|
|
|
- string color; // 支持'R','G','B','',或者'#FA1234'等hexString
|
|
|
+ string color; // 常用值:'R,G,B,P,Y'(不分大小写,也可以hexString),R:红,G:绿,B:蓝,P:主题绿,Y:橙
|
|
|
bool bold; // 加粗,重点展示
|
|
|
bool star; // 带*,重点展示
|
|
|
|
|
@@ -396,6 +396,14 @@ namespace mxdemo.Mind
|
|
|
// 5.5 hht 如果允许强制调剂,禁止调剂到哪个组合?一般禁止调剂到被录取组合,因为原地不动不叫调剂。没有禁止的给0或者null
|
|
|
public int disableForceGroupId;
|
|
|
|
|
|
+ // 5.12 hht 增加颜色控制,常用值:'R,G,B,P,Y'(不分大小写,也可以hexString),R:红,G:绿,B:蓝,P:主题绿,Y:橙
|
|
|
+ // 颜色逻辑:currentGeneration>1
|
|
|
+ // ?录取
|
|
|
+ // ?当前查询组合录取?'G':'Y'
|
|
|
+ // :'R'
|
|
|
+ // :''
|
|
|
+ public string color;
|
|
|
+
|
|
|
public long id { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
|
|
|
public string category { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
|
|
|
public EnumElectiveGeneration generation { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
|