12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package com.gyee.backconfig.vo;
- import lombok.Data;
- /**
- * <p>
- *
- * </p>
- *
- * @author wang
- * @since 2022-09-23
- */
- @Data
- public class Companysvo {
- private String id;
- private String name;
- private String aname;
- private Integer windcapacity;
- private String windcapacityunit;
- private Integer windquantity;
- private Integer capacity;
- private String capacityunit;
- private Integer quantityjz;
- private Integer quantityzc;
- private Integer jrwindcapacity;
- private String jrwindcapacityunit;
- private Integer jrwindquantity;
- private Integer jrcapacity;
- private String jrcapacityunit;
- private Integer jrquantityjz;
- private Integer jrquantityzc;
- private Integer ordernum;
- private Integer version;
- //分页
- private Integer current;
- private Integer pageSize;
- }
|