123456789101112131415161718192021 |
- package com.hssx.cloudmodel.entity.vo;
- import com.hssx.cloudmodel.entity.MouldEquipment;
- /**
- * Author: 吴涛涛 cuiyi@itany.com
- * Date : 2019 - 08 - 05 14:00
- * Description:<描述>
- * Version: 1.0
- */
- public class MouldEquipmentVO extends MouldEquipment {
- private String companyName;
- public String getCompanyName() {
- return companyName;
- }
- public void setCompanyName(String companyName) {
- this.companyName = companyName;
- }
- }
|