Commit 88afe9d5 by 毛树良

[chg]:增加提袋数量、购物袋品牌及品牌执行度标签

1 parent 767d0475
......@@ -16,9 +16,9 @@ public class DPersonLabelDao {
private NamedParameterJdbcTemplate namedParameterJdbcTemplate;
private final static String INSERT_PERSON_LABEL_SQL = "INSERT INTO d_person_label (recognition_unid, account_id, mall_id, count_date, count_time, hair_style,hair_color,hat,hat_color,glasses,mask,earring,jacket_type, jacket_color, " +
"bottoms_type, bottoms_color,suit_type,suit_color,clothing_brand,necklace,watch,bracelet,phone,rucksack_type,rucksack_color,handbag_type,handbag_color,shopping_bag_type,shopping_bag_color,shoe_type,shoe_color) "
"bottoms_type, bottoms_color,suit_type,suit_color,clothing_brand,necklace,watch,bracelet,phone,rucksack_type,rucksack_color,handbag_type,handbag_color,shopping_bag_type,shopping_bag_color,shopping_bag_num,shopping_bag_logo1,shopping_bag_logo1_score,shopping_bag_logo2,shopping_bag_logo2_score,shoe_type,shoe_color) "
+ "VALUES (:recognitionUnid, :accountId, :mallId,:countDate,:countTime,:hairStyle,:hairColor,:hat,:hatColor,:glasses,:mask,:earring,:jacketType,:jacketColor,:bottomsType,:bottomsColor,:suitType,:suitColor,:clothingBrand,:necklace," +
":watch,:bracelet,:phone,:rucksackType,:rucksackColor,:handbagType,:handbagColor,:shoppingBagType,:shoppingBagColor,:shoeType,:shoeColor);";
":watch,:bracelet,:phone,:rucksackType,:rucksackColor,:handbagType,:handbagColor,:shoppingBagType,:shoppingBagColor,:shoppingBagNum,:shoppingBagLogo1,:shoppingBagLogo1Score,:shoppingBagLogo2,:shoppingBagLogo2Score,:shoeType,:shoeColor);";
public void insert(PersonLabelContent personLabel) {
SqlParameterSource parameterSource = new BeanPropertySqlParameterSource(personLabel);
......
......@@ -142,6 +142,31 @@ public class PersonLabelContent {
private Integer shoppingBagColor;
/**
* 提袋数量
*/
private Integer shoppingBagNum;
/**
* 提袋1的Logo
*/
private String shoppingBagLogo1;
/**
* 提袋1Logo的置信度
*/
private Float shoppingBagLogo1Score;
/**
* 提袋2的Logo
*/
private String shoppingBagLogo2;
/**
* 提袋2Logo的置信度
*/
private Float shoppingBagLogo2Score;
/**
* 鞋子类型
*/
private Integer shoeType;
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!