statistic.proto 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. syntax = "proto3";
  2. package backend.operation;
  3. option go_package = ".;operationPb";
  4. import "backend/operation/pagination.proto";
  5. import "backend/operation/enum.proto";
  6. import "backend/operation/pasture.proto";
  7. // SearchFormulaEstimateRequest 配方评估
  8. message SearchFormulaEstimateRequest {
  9. string start_time = 1; // 开始时间
  10. string end_time = 2; // 结束时间
  11. int32 search_type = 3; // 查询方式 0 安照配方 1 按照栏舍
  12. string api_name = 4; // 牧场端接口标识名称
  13. int32 pasture_id = 5; // 牧场id
  14. int32 template_id = 6; // 配方模板id
  15. int32 barn_id = 7; // 栏舍id
  16. PaginationModel pagination = 8; // 分页
  17. }
  18. // SearchInventoryStatisticsRequest 库存管理-库存统计
  19. message SearchInventoryStatisticsRequest {
  20. string start_time = 1; // 开始时间
  21. string end_time = 2; // 结束时间
  22. string api_name = 3; // 牧场端接口标识名称
  23. string feed_name = 4; // 饲料名称
  24. int32 pasture_id = 5; // 牧场id
  25. PaginationModel pagination = 6; // 分页
  26. }
  27. // SearchUserMaterialsStatisticsRequest 库存管理-用料分析
  28. message SearchUserMaterialsStatisticsRequest {
  29. string start_time = 1; // 开始时间
  30. string end_time = 2; // 结束时间
  31. string api_name = 3; // 牧场端接口标识名称
  32. int32 pasture_id = 4; // 牧场id
  33. int32 error_check = 5; // 误差是否选中 0 未选中 1 选中
  34. int32 type_check = 6; // 返回实际或理论 1 理论 2 实际
  35. string feed_name = 7; // 名称
  36. PaginationModel pagination = 8; // 分页
  37. }
  38. // SearchPriceStatisticsRequest 库存管理-价格分析
  39. message SearchPriceStatisticsRequest {
  40. string start_time = 1; // 开始时间
  41. string end_time = 2; // 结束时间
  42. string api_name = 3; // 牧场端接口标识名称
  43. int32 pasture_id = 4; // 牧场id
  44. string feed_name = 5; // 名称
  45. PaginationModel pagination = 6; // 分页
  46. }
  47. // SearchFeedStatisticsRequest 饲喂效率-效率统计
  48. message SearchFeedStatisticsRequest {
  49. string start_time = 1; // 开始时间
  50. string api_name = 2; // 牧场端接口标识名称
  51. repeated int32 pasture_id = 3; // 牧场id
  52. string formula_template = 4; // 配方模板名称
  53. string barn_name = 5; // 栏舍名称
  54. string cattle_category_name = 6; // 畜牧类别名称
  55. int32 cattle_category_id = 7; // 畜牧类别id
  56. int32 class_number = 8; // 班次
  57. PaginationModel pagination = 9; // 分页
  58. }
  59. // FeedChartStatisticsRequest 饲喂效率chart图表
  60. message FeedChartStatisticsRequest {
  61. string start_time = 1; // 开始时间
  62. string end_time = 2; // 结束时间
  63. int32 pasture_id = 3; // 牧场id
  64. int32 status = 4;
  65. string api_type = 5; // mr 泌乳牛干物质采食量 sl 牛栏剩料率 hl 混料时间统计 zh 转化率 cbft 成本分析
  66. }
  67. // CowsAnalysisRequest 饲喂效率-牛群评估
  68. message CowsAnalysisRequest {
  69. string start_time = 1; // 开始时间
  70. string api_name = 2; // 牧场端接口标识名称
  71. int32 pasture_id = 3; // 牧场id
  72. PaginationModel pagination = 4; // 分页
  73. }
  74. // AccuracyAggStatisticsRequest 准确性分析-汇总统计
  75. message AccuracyAggStatisticsRequest {
  76. string start_time = 1; // 开始时间
  77. string end_time = 2; // 结束时间
  78. int32 pasture_id = 3; // 牧场id
  79. string fname = 4; // 查询名称
  80. string sort = 5;
  81. string status = 6;
  82. int32 genre = 7;
  83. int32 isdate = 8;
  84. int32 hlwc1 = 9;
  85. int32 hlwc2 = 10;
  86. int32 hlzq1 = 11;
  87. int32 hlzq2 = 12;
  88. int32 hlzql1 = 13;
  89. int32 hlzql2 = 14;
  90. int32 slwc1 = 15;
  91. int32 slwc2 = 16;
  92. int32 slzq1 = 17;
  93. int32 slzq2 = 18;
  94. int32 slzql1 = 19;
  95. int32 slzql2 = 20;
  96. string projname = 21;
  97. string Times = 22;
  98. bool is_error = 23;
  99. }
  100. // MixFeedStatisticsRequest 准确性分析-混料统计
  101. message MixFeedStatisticsRequest {
  102. string start_time = 1; // 开始时间
  103. string end_time = 2; // 结束时间
  104. string api_name = 3; // 牧场端接口标识名称
  105. int32 pasture_id = 4; // 牧场id
  106. string equipment_name = 5; // 设备名称
  107. string train_number = 6; // 车次
  108. int32 class_number = 7; // 班次
  109. string formulation_name = 8; // 配方名称
  110. int32 jump_type = 9; // 跳转方式 0 手动跳转 1 自动跳转
  111. int32 hlwc1 = 10; // 混料误差值1
  112. int32 hlwc2 = 11; // 混料误差值2
  113. int32 hlzq1 = 12; // 混料准确率1
  114. int32 hlzq2 = 13; // 混料准确率2
  115. int32 hlzql1 = 14; // 混料正确率1
  116. int32 hlzql2 = 15; // 混料正确率2
  117. bool is_error = 16; // 只看超出预设值数据
  118. string button_type = 17;
  119. string is_use = 18;
  120. PaginationModel pagination = 19; // 分页
  121. }
  122. // SprinkleStatisticsRequest 准确性分析-撒料统计
  123. message SprinkleStatisticsRequest {
  124. string start_time = 1; // 开始时间
  125. string end_time = 2; // 结束时间
  126. string api_name = 3; // 牧场端接口标识名称
  127. int32 pasture_id = 4; // 牧场id
  128. string equipment_name = 5; // tmr设备名称
  129. string train_number = 6; // 车次
  130. int32 class_number = 7; // 班次
  131. string formulation_name = 8; // 配方名称
  132. string barn_name = 9; // 栏舍名称
  133. int32 jump_type = 10; // 跳转方式 0 手动跳转 1 自动跳转
  134. int32 slwc1 = 11; // 撒料误差值1
  135. int32 slwc2 = 12; // 撒料误差值2
  136. int32 slzq1 = 13; // 撒料准确率1
  137. int32 slzq2 = 14; // 撒料准确率2
  138. int32 slzql1 = 15; // 撒料正确率1
  139. int32 slzql2 = 16; // 撒料正确率2
  140. bool is_error = 17; // 只看超出预设值数据
  141. string button_type = 18;
  142. string is_use = 19;
  143. PaginationModel pagination = 20; // 分页
  144. }
  145. // GetDataByNameRequest
  146. message GetDataByNameRequest {
  147. string start_time = 1; // 开始时间
  148. string end_time = 2; // 结束时间
  149. string api_name = 3; // 牧场端接口标识名称
  150. int32 pasture_id = 4; // 牧场id
  151. }
  152. // ProcessAnalysisRequest 过程分析
  153. message ProcessAnalysisRequest {
  154. string start_time = 1; // 开始时间
  155. string end_time = 2; // 结束时间
  156. string api_name = 3; // 牧场端接口标识名称
  157. int32 pasture_id = 4; // 牧场id
  158. int32 plan_type = 5; // 计划类型
  159. repeated string tmr_name = 6; // TMR名称
  160. string error_range = 7; // 误差筛选范围
  161. string work_status = 8; // 工作状态
  162. string mix_feed_type = 9; // 混料类别
  163. int32 hlwc1 = 10; // 混料误差值1
  164. int32 hlwc2 = 11; // 混料误差值2
  165. int32 hlzq1 = 12; // 混料准确率1
  166. int32 hlzq2 = 13; // 混料准确率2
  167. int32 slwc1 = 14; // 撒料误差值1
  168. int32 slwc2 = 15; // 撒料误差值2
  169. int32 slzq1 = 16; // 撒料准确率1
  170. int32 slzq2 = 17; // 撒料准确率2
  171. PaginationModel pagination = 18; // 分页
  172. }
  173. message TrainNumberRequest {
  174. string api_name = 1; // 牧场端接口标识名称
  175. int32 pasture_id = 2; // 牧场id
  176. string info_name = 3;
  177. PaginationModel pagination = 4; // 分页
  178. }
  179. message TrainNumberResponse {
  180. int32 code = 1;
  181. string msg = 2;
  182. TrainNumberData data = 3;
  183. }
  184. message TrainNumberData {
  185. repeated FormulaOptionEnum list = 1;
  186. }
  187. // 首页 dashboard 准确性分析
  188. message SearchAnalysisAccuracyRequest {
  189. CattleCategoryParent.Kind cattle_parent_category_id = 1; // 牧畜分类id 泌乳牛
  190. int32 feed_formula_id = 2; // 配方id
  191. string start_date = 3; // 开始时间
  192. string end_date = 4; // 结束时间
  193. repeated int32 pasture_ids = 5; //牧场ids
  194. }
  195. message SearchAnalysisAccuracyResponse {
  196. int32 code = 1;
  197. string msg = 2;
  198. AnalysisAccuracy data = 3;
  199. }
  200. message AnalysisAccuracy {
  201. Chart chart = 1;
  202. Table table = 2;
  203. }
  204. message Chart {
  205. CommonValueRatio mixed_fodder_accurate_ratio = 4; // 混料准确率
  206. CommonValueRatio mixed_fodder_correct_ratio = 5; // 混料正确率
  207. CommonValueRatio sprinkle_fodder_accurate_ratio = 6; // 撒料准确率
  208. CommonValueRatio sprinkle_fodder_correct_ratio = 7; // 撒料正确率
  209. }
  210. message Table {
  211. message TableList {
  212. int32 id = 1;
  213. string name = 2;
  214. }
  215. repeated TableList table_list = 1;
  216. }
  217. message CommonValueRatio {
  218. string max_value = 1; // 最高值
  219. string middle_value = 2; // 中位值
  220. string min_value = 3; // 最低值
  221. repeated ValueRatio data_list = 4; // 数据集合
  222. repeated string pasture_name = 5; // 牧场名称集合
  223. repeated string date_day = 6; // 日期集合
  224. }
  225. message ValueRatio {
  226. repeated string value_ratio = 1;
  227. }
  228. // 首页 dashboard 撒料时间统计分析
  229. message SprinkleFeedTimeRequest {
  230. int32 feed_formula_id = 1; // 配方id
  231. string start_date = 2; // 开始时间
  232. string end_date = 3; // 结束时间
  233. repeated int32 pasture_ids = 4; //牧场ids
  234. }